1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-06 08:07:20 +02:00
Radarr/NzbDrone.Web/Models/SeriesDetailsModel.cs
Mark McDowall a7fd486b03 Change episode file quality
New: Ability to change the quality of an episode in the database
2012-09-03 16:26:52 -07:00

24 lines
740 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Web;
using System.Web.Mvc;
using NzbDrone.Core.Model;
using NzbDrone.Core.Repository;
namespace NzbDrone.Web.Models
{
public class SeriesDetailsModel
{
public int SeriesId { get; set; }
public string Title { get; set; }
public string AirsDayOfWeek { get; set; }
public string QualityProfileName { get; set; }
public string Overview { get; set; }
public string NextAiring { get; set; }
public string Path { get; set; }
public bool HasBanner { get; set; }
public List<SeasonModel> Seasons { get; set; }
public SelectList QualitySelectList { get; set; }
}
}