mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-20 21:55:03 -04:00
15 lines
422 B
C#
15 lines
422 B
C#
using NzbDrone.Core.Tv;
|
|
|
|
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; }
|
|
}
|
|
}
|