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; }
|
|
|
|
|
public List<QualityProfile> UserProfiles { get; set; }
|
2011-02-05 06:07:25 +00:00
|
|
|
|
|
|
|
|
|
[DisplayName("Default Quality Profile")]
|
2011-02-17 17:45:02 +00:00
|
|
|
|
public int DefaultQualityProfileId { get; set; }
|
2011-02-05 06:07:25 +00:00
|
|
|
|
|
|
|
|
|
public SelectList SelectList { get; set; }
|
2011-02-03 02:49:52 +00:00
|
|
|
|
}
|
|
|
|
|
}
|