mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-03-05 15:15:59 +02:00
13 lines
286 B
C#
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; }
|
||
|
}
|
||
|
}
|