aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/Video/ExtraRuleType.cs
blob: 323c7cef60074bbd5e41c0662977d45db6ba3993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
    }
}