jellyfin/Emby.Naming/Video/ExtraRuleType.cs

28 lines
703 B
C#
Raw Normal View History

#pragma warning disable CS1591
2018-09-12 19:26:21 +02:00
namespace Emby.Naming.Video
{
public enum ExtraRuleType
{
/// <summary>
/// Match <see cref="ExtraRule.Token"/> against a suffix in the file name.
2018-09-12 19:26:21 +02:00
/// </summary>
Suffix = 0,
2018-09-12 19:26:21 +02:00
/// <summary>
/// Match <see cref="ExtraRule.Token"/> against the file name.
2018-09-12 19:26:21 +02:00
/// </summary>
Filename = 1,
2018-09-12 19:26:21 +02:00
/// <summary>
/// Match <see cref="ExtraRule.Token"/> against the a regex.
2018-09-12 19:26:21 +02:00
/// </summary>
Regex = 2,
/// <summary>
2020-04-01 19:04:00 +02:00
/// Match <see cref="ExtraRule.Token"/> against the name of the directory containing the file.
/// </summary>
DirectoryName = 3,
2018-09-12 19:26:21 +02:00
}
}