mirror of https://github.com/Radarr/Radarr
18 lines
519 B
C#
18 lines
519 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Web.Mvc;
|
|
using NzbDrone.Core.Repository.Quality;
|
|
|
|
namespace NzbDrone.Web.Models
|
|
{
|
|
public class QualityModel
|
|
{
|
|
public List<QualityProfile> Profiles { get; set; }
|
|
|
|
[DisplayName("Default Quality Profile")]
|
|
[Description("The default quality to use when adding series to NzbDrone")]
|
|
public int DefaultQualityProfileId { get; set; }
|
|
|
|
public SelectList QualityProfileSelectList { get; set; }
|
|
}
|
|
} |