mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-07 23:17:35 +00:00
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; }
|
|
}
|
|
}
|