22 lines
590 B
C#
22 lines
590 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using NzbDrone.Api.REST;
|
|||
|
using NzbDrone.Core.Parser;
|
|||
|
using NzbDrone.Core.Qualities;
|
|||
|
|
|||
|
namespace NzbDrone.Api.Profiles
|
|||
|
{
|
|||
|
public class ProfileResource : RestResource
|
|||
|
{
|
|||
|
public String Name { get; set; }
|
|||
|
public Quality Cutoff { get; set; }
|
|||
|
public List<ProfileQualityItemResource> Items { get; set; }
|
|||
|
public Language Language { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public class ProfileQualityItemResource : RestResource
|
|||
|
{
|
|||
|
public Quality Quality { get; set; }
|
|||
|
public bool Allowed { get; set; }
|
|||
|
}
|
|||
|
}
|