cs11dotnet7/vscode/Chapter05/PacktLibraryNetStandard2/BankAccount.cs
2022-09-17 16:33:54 +01: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
}