mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-24 22:35:39 -04:00
beaf0cf939
Added foreign relations to all entities object Removed unnecessary libraries
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; }
|
|
}
|
|
}
|