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

19 lines
399 B
C#
Raw Normal View History

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