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