aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/Video/ExtraRuleType.cs
blob: b021a04a3116d35d7a865b51523767b28fe16de4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma warning disable CS1591

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
    }
}