23 lines
385 B
C#
23 lines
385 B
C#
#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
|
|
}
|
|
}
|