dotnet-sdk/test/Dapr.AspNetCore.Integration.../UserInfo.cs

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; }
}
}