mirror of https://github.com/dapr/dotnet-sdk.git
15 lines
401 B
C#
15 lines
401 B
C#
// ------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
// ------------------------------------------------------------
|
|
|
|
namespace Dapr.AspNetCore.IntegrationTest.App
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
public class UserInfo
|
|
{
|
|
[Required]
|
|
public string Name { get; set; }
|
|
}
|
|
} |