/* SourceType.cs $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ namespace Handbrake.Model { /// /// The Type of source that the user has scanned /// public enum SourceType { /// /// No Source Selected /// None = 0, /// /// The soruce selected is a folder /// Folder, /// /// The source selected is a DVD drive /// DvdDrive, /// /// The source selected is a Video File /// VideoFile } }