// ------------------------------------------------------------ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. // ------------------------------------------------------------ namespace RoutingSample { /// /// Represents a transaction used by sample code. /// public class Transaction { /// /// Gets or sets account id for the transaction. /// public string Id { get; set; } /// /// Gets or sets amount for the transaction. /// public decimal Amount { get; set; } } }