banking-bot/BankingBot/Models/Account.cs
2017-02-10 20:48:11 +00:00

19 lines
373 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; }
public decimal Balance { get; set; }
}
}