mirror of https://github.com/dapr/dotnet-sdk.git
19 lines
481 B
C#
19 lines
481 B
C#
// ------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
// ------------------------------------------------------------
|
|
|
|
namespace GrpcServiceSample.Models
|
|
{
|
|
/// <summary>
|
|
/// BankService GetAccount input model
|
|
/// </summary>
|
|
public class GetAccountInput
|
|
{
|
|
/// <summary>
|
|
/// Id of account
|
|
/// </summary>
|
|
public string Id { get; set; }
|
|
}
|
|
}
|