mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-31 12:14:46 -04:00
24 lines
448 B
C#
24 lines
448 B
C#
namespace Kyoo.Core.Models.Options
|
|
{
|
|
/// <summary>
|
|
/// Options for media registering.
|
|
/// </summary>
|
|
public class MediaOptions
|
|
{
|
|
/// <summary>
|
|
/// The path of this options
|
|
/// </summary>
|
|
public const string Path = "Media";
|
|
|
|
/// <summary>
|
|
/// A regex for episodes
|
|
/// </summary>
|
|
public string[] Regex { get; set; }
|
|
|
|
/// <summary>
|
|
/// A regex for subtitles
|
|
/// </summary>
|
|
public string[] SubtitleRegex { get; set; }
|
|
}
|
|
}
|