mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
17 lines
618 B
C#
17 lines
618 B
C#
namespace Jackett.Common.Models.IndexerConfig
|
|
{
|
|
public class ConfigurationDataUserPasskey : ConfigurationData
|
|
{
|
|
public StringItem Username { get; private set; }
|
|
public StringItem Passkey { get; private set; }
|
|
public DisplayItem Instructions { get; protected set; }
|
|
|
|
public ConfigurationDataUserPasskey(string instructionMessageOptional = null)
|
|
{
|
|
Username = new StringItem { Name = "Username" };
|
|
Passkey = new StringItem { Name = "Passkey" };
|
|
Instructions = new DisplayItem(instructionMessageOptional) { Name = "" };
|
|
}
|
|
}
|
|
}
|