namespace Kyoo.Core.Models.Options { /// /// Options for media registering. /// public class MediaOptions { /// /// The path of this options /// public const string Path = "Media"; /// /// A regex for episodes /// public string[] Regex { get; set; } /// /// A regex for subtitles /// public string[] SubtitleRegex { get; set; } } }