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