using System.Collections.Generic; using Newtonsoft.Json; namespace Ombi.Core.Models.Requests { public class TvRequestViewModel { public bool RequestAll { get; set; } public bool LatestSeason { get; set; } public bool FirstSeason { get; set; } public int TvDbId { get; set; } public List Seasons { get; set; } = new List(); [JsonIgnore] public string RequestedByAlias { get; set; } } public class SeasonsViewModel { public int SeasonNumber { get; set; } public List Episodes { get; set; } = new List(); } public class EpisodesViewModel { public int EpisodeNumber { get; set; } } }