mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
cd85964edd
Removed DownloadPropers bool.
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; }
|
|
}
|
|
} |