// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the SourceType type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.Interop.Model { /// /// The Source Type. (File, Folder, DVD) /// public enum SourceType { /// /// None /// None = 0, /// /// File /// File, /// /// Video Folder /// VideoFolder, /// /// DVD /// Dvd } }