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