banking-bot/BankingBot/LoginCredentials/LloydsLoginCredentials.cs
2017-01-25 16:57:20 +00:00

18 lines
475 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BankingBot.Attributes;
using BankingBot.Contracts;
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; }
}
}