dotnet-sdk/samples/AspNetCore/RoutingSample/Account.cs

23 lines
610 B
C#

// ------------------------------------------------------------
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
// ------------------------------------------------------------
namespace RoutingSample
{
/// <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; }
}
}