321c440739
Refs #575
19 lines
339 B
C#
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
|
|
}
|
|
}
|