mirror of
https://github.com/Radarr/Radarr
synced 2024-12-30 20:05:41 +00:00
c8a8fb4d62
Added basic support for file scan Major redactor of ReportTitle/File parsing Updated Ninject/Ninject.MVC Removed dependency from Microsoft.Web.Administration reactored Episode repository structure
9 lines
223 B
C#
9 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; }
|
|
}
|
|
}
|