using System; using System.Collections.Generic; using NzbDrone.Core.Model; using NzbDrone.Core.Repository; namespace NzbDrone.Web.Models { public class UpcomingEpisodesModel { public List Yesterday { get; set; } public List Today { get; set; } public List Tomorrow { get; set; } public List TwoDays { get; set; } public List ThreeDays { get; set; } public List FourDays { get; set; } public List FiveDays { get; set; } public List SixDays { get; set; } public List Later { get; set; } } }