mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
8 lines
205 B
C#
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
|
|||
|
|
}
|