Radarr/src/NzbDrone.Api/NetImport/NetImportResource.cs

17 lines
507 B
C#

using System.Collections.Generic;
using NzbDrone.Core.Movies;
namespace NzbDrone.Api.NetImport
{
public class NetImportResource : ProviderResource
{
public bool Enabled { get; set; }
public bool EnableAuto { get; set; }
public bool ShouldMonitor { get; set; }
public string RootFolderPath { get; set; }
public int ProfileId { get; set; }
public MovieStatusType MinimumAvailability { get; set; }
public HashSet<int> Tags { get; set; }
}
}