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