#pragma warning disable CS1591
namespace Emby.Naming.Video
{
public enum ExtraRuleType
{
///
/// Match against a suffix in the file name.
///
Suffix = 0,
///
/// Match against the file name, excluding the file extension.
///
Filename = 1,
///
/// Match against the file name, including the file extension.
///
Regex = 2,
///
/// Match against the name of the directory containing the file.
///
DirectoryName = 3,
}
}