mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
19 lines
399 B
C#
19 lines
399 B
C#
using System.Linq;
|
|
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;
|
|
}
|
|
}
|
|
} |