1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00
Files
Sonarr/NzbDrone.Api/QualityType/QualityTypeModel.cs
T
2013-01-01 18:06:55 -08:00

13 lines
286 B
C#

using System;
using System.Linq;
namespace NzbDrone.Api.QualityType
{
public class QualityTypeModel
{
public Int32 Id { get; set; }
public String Name { get; set; }
public Int32 MinSize { get; set; }
public Int32 MaxSize { get; set; }
}
}