mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
18 lines
380 B
C#
18 lines
380 B
C#
using NzbDrone.Core.Datastore;
|
|
|
|
|
|
namespace NzbDrone.Core.Qualities
|
|
{
|
|
public class QualitySize : ModelBase
|
|
{
|
|
public int QualityId { get; set; }
|
|
public string Name { get; set; }
|
|
public int MinSize { get; set; }
|
|
public int MaxSize { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return Name;
|
|
}
|
|
}
|
|
} |