banking-bot/BankingBot/LoginCredentials/LloydsLoginCredentials.cs
Aaron Yarborough f5e9908e83 Refactoring
2017-02-13 13:13:27 +00:00

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; }
}
}