// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// OutputFormat Changed Event Args
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.EventArgs
{
using EventArgs = System.EventArgs;
public class OutputFormatChangedEventArgs : EventArgs
{
public OutputFormatChangedEventArgs(string extension)
{
this.Extension = extension;
}
public string Extension { get; private set; }
}
}