1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-28 10:37:41 +00:00
Lidarr/NzbDrone.Core/Repository/Quality/AllowedQuality.cs
markus101 1cf5e55e61 Added in Bluray 1080P Quality Type.
Added additional columns for AllowedQuality
2011-01-31 17:01:49 -08:00

11 lines
309 B
C#

namespace NzbDrone.Core.Repository.Quality
{
public class AllowedQuality
{
public int Id { get; set; }
public int ProfileId { get; set; }
public int Order { get; set; }
public bool MarkComplete { get; set; }
public QualityTypes Quality { get; set; }
}
}