jellyfin/Emby.Naming/Video/ExtraRuleType.cs
2019-01-17 20:24:01 +01:00

19 lines
339 B
C#

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