aspnetcore/test/Microsoft.AspNet.Identity.Test/TestUser.cs

15 lines
272 B
C#

using System;
namespace Microsoft.AspNet.Identity.Test
{
public class TestUser
{
public TestUser()
{
Id = Guid.NewGuid().ToString();
}
public string Id { get; set; }
public string UserName { get; set; }
}
}