mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-02-23 15:15:01 +01:00
10 lines
351 B
C#
Executable File
10 lines
351 B
C#
Executable File
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;
|
|
} |