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