startit/Emne 3/BankAppMarie/BankAppMarie/Bill.cs
Geir Okkenhaug Jerstad 7616efbf77 removed dotnet 6
2024-12-03 13:40:12 +01:00

26 lines
597 B
C#

using System.Security.Cryptography;
namespace BankAppMarie
{
public class Bill
{
public int Amount { get; private set; }
public string AccountNumber { get; set; }
public string Sender { get; set; }
public string KidNr { get; set; }
public int Id { get; set; }
public DateTime PayDate { get; set; }
public Bill(int billAmount, string billNumber, DateTime timeToPay, int id)
{
Amount = billAmount;
KidNr = billNumber;
PayDate = timeToPay;
Id = id;
}
}
}