mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-27 02:07:41 +00:00
d083d653db
Default Quality can now be set through Settings/Quality using a drop down list. Fixed QualityType for BDRip (was sharing a value with DVD).
22 lines
No EOL
587 B
C#
22 lines
No EOL
587 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Web;
|
|
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; }
|
|
public List<QualityTypes> Qualities { get; set; }
|
|
|
|
[DisplayName("Default Quality Profile")]
|
|
public int DefaultProfileId { get; set; }
|
|
|
|
public SelectList SelectList { get; set; }
|
|
}
|
|
} |