mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
3b63cfb5d2
Changed QualityProfile and AllowedQuality to be meet requirements
17 lines
488 B
C#
17 lines
488 B
C#
using SubSonic.SqlGeneration.Schema;
|
|
|
|
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; }
|
|
|
|
[SubSonicToOneRelation(ThisClassContainsJoinKey = true)]
|
|
public virtual QualityProfile QualityProfile { get; private set; }
|
|
}
|
|
}
|