mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-28 10:37:41 +00:00
1cf5e55e61
Added additional columns for AllowedQuality
11 lines
309 B
C#
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; }
|
|
}
|
|
}
|