jellyfin/Emby.Naming/Video/ExtraRuleType.cs
2018-09-12 19:26:21 +02:00

20 lines
343 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
}
}