2011-02-03 03:49:52 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2011-02-05 07:07:25 +01:00
|
|
|
|
using System.ComponentModel;
|
2011-02-11 02:22:29 +01:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2011-02-03 03:49:52 +01:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Web;
|
2011-02-05 07:07:25 +01:00
|
|
|
|
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; }
|
|
|
|
|
public List<QualityProfile> UserProfiles { get; set; }
|
2011-02-05 07:07:25 +01:00
|
|
|
|
|
|
|
|
|
[DisplayName("Default Quality Profile")]
|
2011-02-17 18:45:02 +01:00
|
|
|
|
public int DefaultQualityProfileId { get; set; }
|
2011-02-05 07:07:25 +01:00
|
|
|
|
|
|
|
|
|
public SelectList SelectList { get; set; }
|
2011-02-03 03:49:52 +01:00
|
|
|
|
}
|
|
|
|
|
}
|