mirror of https://github.com/dapr/dotnet-sdk.git
14 lines
370 B
C#
14 lines
370 B
C#
// ------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
// ------------------------------------------------------------
|
|
|
|
namespace Dapr.AspNetCore.IntegrationTest.App
|
|
{
|
|
public class Widget
|
|
{
|
|
public string Size { get; set; }
|
|
|
|
public int Count { get; set; }
|
|
}
|
|
} |