mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-11 05:22:44 +01:00
8e214029c9
Moved Download Propers to Quality settings. Cleaned up Quality UI and enhanced it with some jQuery goodness. Mmmmm jQuery.
23 lines
758 B
C#
23 lines
758 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; }
|
|
public List<QualityProfile> UserProfiles { get; set; }
|
|
|
|
[DisplayName("Default Quality Profile")]
|
|
[Description("The default quality to use when adding series to NzbDrone")]
|
|
public int DefaultQualityProfileId { get; set; }
|
|
|
|
[DisplayName("Download Propers")]
|
|
[Description("Should NzbDrone download proper releases (to replace non-proper files)?")]
|
|
public bool DownloadPropers { get; set; }
|
|
|
|
public SelectList SelectList { get; set; }
|
|
}
|
|
} |