dotnet-sdk/samples/ControllerSample/Account.cs

9 lines
152 B
C#

namespace ControllerSample
{
public class Account
{
public string Id { get; set; }
public decimal Balance { get; set; }
}
}