cs11dotnet7/vscode/Chapter05/PacktLibrary/BankAccount.cs
2022-02-20 17:22:06 +00:00

8 lines
205 B
C#

namespace Packt.Shared;
public class BankAccount
{
public string? AccountName; // instance member
public decimal Balance; // instance member
public static decimal InterestRate; // shared member
}