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
Keivan beaf0cf939 Updated subsonic to latest nightly build
Added foreign relations to all entities object
Removed unnecessary libraries
2010-09-30 17:09:22 -07:00

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; }
}
}