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

19 lines
414 B
C#
Raw Normal View History

using System.Linq;
2013-02-27 06:19:22 +03:00
using NzbDrone.Core.Datastore;
using PetaPoco;
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;
}
}
}