namespace Emby.Naming.TV { public class EpisodeInfo { /// /// Gets or sets the path. /// /// The path. public string Path { get; set; } /// /// Gets or sets the container. /// /// The container. public string Container { get; set; } /// /// Gets or sets the name of the series. /// /// The name of the series. public string SeriesName { get; set; } /// /// Gets or sets the format3 d. /// /// The format3 d. public string Format3D { get; set; } /// /// Gets or sets a value indicating whether [is3 d]. /// /// true if [is3 d]; otherwise, false. public bool Is3D { get; set; } /// /// Gets or sets a value indicating whether this instance is stub. /// /// true if this instance is stub; otherwise, false. public bool IsStub { get; set; } /// /// Gets or sets the type of the stub. /// /// The type of the stub. public string StubType { get; set; } public int? SeasonNumber { get; set; } public int? EpisodeNumber { get; set; } public int? EndingEpsiodeNumber { get; set; } public int? Year { get; set; } public int? Month { get; set; } public int? Day { get; set; } public bool IsByDate { get; set; } } }