Refactor
This commit is contained in:
parent
b35c4765de
commit
2e13404ca5
3 changed files with 13 additions and 16 deletions
|
@ -1,8 +1,4 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankingBot.Exceptions
|
||||
{
|
||||
|
|
|
@ -1,9 +1,4 @@
|
|||
using OpenQA.Selenium;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankingBot.Extensions
|
||||
{
|
||||
|
|
|
@ -6,12 +6,18 @@ namespace BankingBot.LoginCredentials
|
|||
[ProviderIdentifier(Provider.Barclays)]
|
||||
public class BarclaysLoginCredentials : LoginCredentials
|
||||
{
|
||||
public string Surname;
|
||||
public string MembershipNumber;
|
||||
public string CardNumber;
|
||||
public string SortCode;
|
||||
public string AccountNumber;
|
||||
public string Passcode;
|
||||
public string MemorableWord;
|
||||
public string Surname { get; set; }
|
||||
|
||||
public string MembershipNumber { get; set; }
|
||||
|
||||
public string CardNumber { get; set; }
|
||||
|
||||
public string SortCode { get; set; }
|
||||
|
||||
public string AccountNumber { get; set; }
|
||||
|
||||
public string Passcode { get; set; }
|
||||
|
||||
public string MemorableWord { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue