dotnet-sdk/examples/AspNetCore/GrpcServiceSample/Models/Account.cs

24 lines
625 B
C#

// ------------------------------------------------------------
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
// ------------------------------------------------------------
namespace GrpcServiceSample.Models
{
/// <summary>
/// Class representing an Account for samples.
/// </summary>
public class Account
{
/// <summary>
/// Gets or sets account id.
/// </summary>
public string Id { get; set; }
/// <summary>
/// Gets or sets account balance.
/// </summary>
public decimal Balance { get; set; }
}
}