mirror of
https://github.com/Radarr/Radarr
synced 2024-12-30 20:05:41 +00:00
9 lines
221 B
C#
9 lines
221 B
C#
namespace NzbDrone.Core.Entities.Quality
|
|
{
|
|
public class AllowedQuality
|
|
{
|
|
public int Id { get; set; }
|
|
public int ProfileId { get; set; }
|
|
public QualityTypes Quality { get; set; }
|
|
}
|
|
}
|