1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-28 10:48:46 +00:00
Sonarr/NzbDrone.Web/Models/QualityModel.cs
2011-04-09 19:44:01 -07:00

18 lines
No EOL
485 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")]
public int DefaultQualityProfileId { get; set; }
public SelectList SelectList { get; set; }
}
}