Jackett/src/Jackett.Common/Models/IndexerConfig/ConfigurationDataBasicLogin.cs

19 lines
619 B
C#
Raw Normal View History

2020-02-09 02:35:16 +00:00
namespace Jackett.Common.Models.IndexerConfig
2015-04-16 01:16:16 +00:00
{
public class ConfigurationDataBasicLogin : ConfigurationData
{
public StringItem Username { get; private set; }
public StringItem Password { get; private set; }
public DisplayItem Instructions { get; private set; }
2015-04-16 01:16:16 +00:00
public ConfigurationDataBasicLogin(string instructionMessageOptional = null)
2015-04-16 01:16:16 +00:00
{
2015-04-18 06:05:30 +00:00
Username = new StringItem { Name = "Username" };
Password = new StringItem { Name = "Password" };
Instructions = new DisplayItem(instructionMessageOptional) { Name = "" };
2015-04-16 01:16:16 +00:00
}
2015-04-16 01:16:16 +00:00
}
}