mirror of https://github.com/HandBrake/HandBrake
22 lines
698 B
C#
22 lines
698 B
C#
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="ScanMode.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>
|
|
// Scan Mode
|
|
// </summary>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
|
|
namespace HandBrakeWPF.Model
|
|
{
|
|
/// <summary>
|
|
/// ScanModeEnum
|
|
/// </summary>
|
|
public enum ScanMode
|
|
{
|
|
File,
|
|
Folder,
|
|
Disc
|
|
}
|
|
}
|