mirror of
https://github.com/Readarr/Readarr
synced 2026-05-03 18:21:05 +02:00
Still need to remove System.Data.Sqlite, prefer an option in OrmLite to pluralize table names.
15 lines
No EOL
384 B
C#
15 lines
No EOL
384 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NzbDrone.Core.Datastore;
|
|
using ServiceStack.DataAnnotations;
|
|
|
|
namespace NzbDrone.Core.Qualities
|
|
{
|
|
[Alias("QualityProfiles")]
|
|
public class QualityProfile : ModelBase
|
|
{
|
|
public string Name { get; set; }
|
|
public List<Quality> Allowed { get; set; }
|
|
public Quality Cutoff { get; set; }
|
|
}
|
|
} |