// ------------------------------------------------------------ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. // ------------------------------------------------------------ namespace GrpcServiceSample.Models { /// /// BankService GetAccount input model /// public class GetAccountInput { /// /// Id of account /// public string Id { get; set; } } }