#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.
///
Filename = 1,
///
/// Match against the a regex.
///
Regex = 2,
///
/// Match against the directory name of the file.
///
DirectoryName = 3,
}
}