1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Core/Qualities/QualitySize.cs

19 lines
399 B
C#
Raw Normal View History

using System.Linq;
2013-02-27 06:19:22 +03:00
using NzbDrone.Core.Datastore;
2013-03-02 21:25:39 +03:00
2013-02-27 06:19:22 +03:00
namespace NzbDrone.Core.Qualities
{
2013-02-27 06:19:22 +03:00
public class QualitySize : ModelBase
{
2013-02-27 06:19:22 +03:00
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;
}
}
}