mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-25 22:37:27 -04:00
28 lines
834 B
C#
28 lines
834 B
C#
using FluentValidation;
|
|
using NzbDrone.Core.Annotations;
|
|
using NzbDrone.Core.Profiles;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
using NzbDrone.Core.Validation;
|
|
|
|
namespace NzbDrone.Core.NetImport.CouchPotato
|
|
{
|
|
|
|
public class CouchPotatoSettings : NetImportBaseSettings
|
|
{
|
|
public CouchPotatoSettings()
|
|
{
|
|
Link = "http://localhost";
|
|
Port = "5050";
|
|
}
|
|
|
|
[FieldDefinition(0, Label = "CouchPotato URL", HelpText = "Link to your CoouchPootato.")]
|
|
public new string Link { get; set; }
|
|
|
|
[FieldDefinition(1, Label = "CouchPotato Port", HelpText = "Port your CoouchPootato uses.")]
|
|
public string Port { get; set; }
|
|
|
|
[FieldDefinition(2, Label = "CouchPotato API Key", HelpText = "CoouchPootato API Key.")]
|
|
public string ApiKey { get; set; }
|
|
}
|
|
}
|