diff --git a/BankingBot/Exceptions/InvalidCredentialsException.cs b/BankingBot/Exceptions/InvalidCredentialsException.cs index 59ca81d..96d1123 100644 --- a/BankingBot/Exceptions/InvalidCredentialsException.cs +++ b/BankingBot/Exceptions/InvalidCredentialsException.cs @@ -1,8 +1,4 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace BankingBot.Exceptions { diff --git a/BankingBot/Extensions/IWebElementExtensions.cs b/BankingBot/Extensions/IWebElementExtensions.cs index 44f1aa3..e9a14ee 100644 --- a/BankingBot/Extensions/IWebElementExtensions.cs +++ b/BankingBot/Extensions/IWebElementExtensions.cs @@ -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 { diff --git a/BankingBot/LoginCredentials/BarclaysLoginCredentials.cs b/BankingBot/LoginCredentials/BarclaysLoginCredentials.cs index ac87304..a60ebde 100644 --- a/BankingBot/LoginCredentials/BarclaysLoginCredentials.cs +++ b/BankingBot/LoginCredentials/BarclaysLoginCredentials.cs @@ -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; } } }