banking-bot/BankingBot/Models/Account.cs
2017-01-25 17:44:06 +00:00

17 lines
327 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankingBot.Models
{
public class Account
{
public string SortCode { get; set; }
public string AccountNumber { get; set; }
public string Name { get; set; }
}
}