DotBased/DotBased.ASP.Auth/Domains/Identity/UserItemModel.cs

10 lines
351 B
C#
Raw Permalink Normal View History

2024-07-07 17:41:54 +02:00
namespace DotBased.ASP.Auth.Domains.Identity;
public class UserItemModel
{
public string Id { get; set; } = string.Empty;
public string UserName { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public string FamilyName { get; set; } = string.Empty;
}