diff options
Diffstat (limited to 'win/CS/HandBrakeWPF/EventArgs')
-rw-r--r-- | win/CS/HandBrakeWPF/EventArgs/OutputFormatChangedEventArgs.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/EventArgs/OutputFormatChangedEventArgs.cs b/win/CS/HandBrakeWPF/EventArgs/OutputFormatChangedEventArgs.cs new file mode 100644 index 000000000..3c5b69ba3 --- /dev/null +++ b/win/CS/HandBrakeWPF/EventArgs/OutputFormatChangedEventArgs.cs @@ -0,0 +1,23 @@ +// -------------------------------------------------------------------------------------------------------------------- +// <copyright file="OutputFormatChangedEventArgs.cs" company="HandBrake Project (http://handbrake.fr)"> +// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. +// </copyright> +// <summary> +// OutputFormat Changed Event Args +// </summary> +// -------------------------------------------------------------------------------------------------------------------- + +namespace HandBrakeWPF.EventArgs +{ + using EventArgs = System.EventArgs; + + public class OutputFormatChangedEventArgs : EventArgs + { + public OutputFormatChangedEventArgs(string extension) + { + this.Extension = extension; + } + + public string Extension { get; private set; } + } +} |