2011-02-03 02:49:52 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2011-02-05 06:07:25 +00:00
|
|
|
|
using System.ComponentModel;
|
2011-02-11 01:22:29 +00:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2011-02-03 02:49:52 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Web;
|
2011-02-05 06:07:25 +00:00
|
|
|
|
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")]
|
|
|
|
|
public int DefaultProfileId { get; set; }
|
|
|
|
|
|
|
|
|
|
public SelectList SelectList { get; set; }
|
2011-02-03 02:49:52 +00:00
|
|
|
|
}
|
|
|
|
|
}
|