Sonarr/NzbDrone.Core/Repository/Quality/QualityProfile.cs

21 lines
551 B
C#
Raw Normal View History

2010-09-29 17:19:18 +00:00
using System;
using System.Collections.Generic;
2010-09-30 06:59:00 +00:00
using System.ComponentModel;
using SubSonic.SqlGeneration.Schema;
2010-09-29 17:19:18 +00:00
namespace NzbDrone.Core.Repository.Quality
2010-09-29 17:19:18 +00:00
{
public class QualityProfile
{
[SubSonicPrimaryKey(true)]
public int ProfileId { get; set; }
public string Name { get; set; }
public bool UserProfile { get; set; } //Allows us to tell the difference between default and user profiles
2010-09-30 06:59:00 +00:00
public List<QualityTypes> Allowed { get; set; }
public QualityTypes Cutoff { get; set; }
2010-09-30 06:59:00 +00:00
2010-09-29 17:19:18 +00:00
}
}