aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/Video/ExtraRuleType.cs
blob: 565239ff9a6fadab412278bf91067d63f1adac02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Emby.Naming.Video
{
    public enum ExtraRuleType
    {
        /// <summary>
        /// The suffix
        /// </summary>
        Suffix = 0,
        /// <summary>
        /// The filename
        /// </summary>
        Filename = 1,
        /// <summary>
        /// The regex
        /// </summary>
        Regex = 2
    }
}