aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/TV/EpisodePathParserResult.cs
blob: e1a48bfbc99c85861d58bb28a1f7ef65d14e0199 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace Emby.Naming.TV
{
    public class EpisodePathParserResult
    {
        public int? SeasonNumber { get; set; }
        public int? EpisodeNumber { get; set; }
        public int? EndingEpsiodeNumber { get; set; }
        public string SeriesName { get; set; }
        public bool Success { get; set; }

        public bool IsByDate { get; set; }
        public int? Year { get; set; }
        public int? Month { get; set; }
        public int? Day { get; set; }
    }
}