12 lines
331 B
C#
12 lines
331 B
C#
using BankingBot.Attributes;
|
|
|
|
namespace BankingBot.LoginCredentials
|
|
{
|
|
[ProviderIdentifier(Enums.Provider.Lloyds)]
|
|
public class LloydsLoginCredentials : LoginCredentials
|
|
{
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
public string Passphrase { get; set; }
|
|
}
|
|
}
|