1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/NzbDrone.Core/Qualities/QualitySize.cs

19 lines
399 B
C#
Raw Normal View History

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