2011-04-10 02:44:01 +00:00
|
|
|
|
using System.Collections.Generic;
|
2011-02-05 06:07:25 +00:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Web.Mvc;
|
2011-02-03 02:49:52 +00:00
|
|
|
|
using NzbDrone.Core.Repository.Quality;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Web.Models
|
|
|
|
|
{
|
|
|
|
|
public class QualityModel
|
|
|
|
|
{
|
|
|
|
|
public List<QualityProfile> Profiles { get; set; }
|
2011-02-05 06:07:25 +00:00
|
|
|
|
|
|
|
|
|
[DisplayName("Default Quality Profile")]
|
2011-05-18 03:39:26 +00:00
|
|
|
|
[Description("The default quality to use when adding series to NzbDrone")]
|
2011-02-17 17:45:02 +00:00
|
|
|
|
public int DefaultQualityProfileId { get; set; }
|
2011-02-05 06:07:25 +00:00
|
|
|
|
|
2011-05-29 08:59:25 +00:00
|
|
|
|
public SelectList QualityProfileSelectList { get; set; }
|
2011-09-16 04:42:30 +00:00
|
|
|
|
|
|
|
|
|
public int SdtvMaxSize { get; set; }
|
|
|
|
|
public int DvdMaxSize { get; set; }
|
|
|
|
|
public int HdtvMaxSize { get; set; }
|
|
|
|
|
public int WebdlMaxSize { get; set; }
|
|
|
|
|
public int Bluray720pMaxSize { get; set; }
|
|
|
|
|
public int Bluray1080pMaxSize { get; set; }
|
2011-02-03 02:49:52 +00:00
|
|
|
|
}
|
|
|
|
|
}
|