Radarr/NzbDrone.Core/Repository/Quality/AllowedQuality.cs

10 lines
223 B
C#

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