mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-03 01:01:34 +02:00
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; }
|
|
}
|
|
}
|