mirror of https://github.com/Radarr/Radarr
10 lines
223 B
C#
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; }
|
|||
|
}
|
|||
|
}
|