namespace Emby.Naming.Video
{
///
/// Extra rules type to determine against what should be matched.
///
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
}
}