1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-23 01:41:42 +02:00
Radarr/NzbDrone.Core/Repository/Quality/AllowedQuality.cs

10 lines
223 B
C#
Raw Normal View History

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