aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/FileOrganization/EpisodeFileOrganizationRequest.cs
blob: 0b12ebc51d230ea0942dd29a2cd71d227e6a73e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace MediaBrowser.Model.FileOrganization
{
    public class EpisodeFileOrganizationRequest
    {
        public string ResultId { get; set; }
        
        public string SeriesId { get; set; }

        public int SeasonNumber { get; set; }

        public int EpisodeNumber { get; set; }

        public int? EndingEpisodeNumber { get; set; }

        public bool RememberCorrection { get; set; }
    }
}