mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-02-23 23:25:00 +01:00
9 lines
302 B
C#
9 lines
302 B
C#
namespace DotBased.AspNet.Authority.Models.Authority;
|
|
|
|
public class AuthorityUserItem
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string UserName { get; set; } = string.Empty;
|
|
public string? EmailAddress { get; set; } = string.Empty;
|
|
public string? PhoneNumber { get; set; } = string.Empty;
|
|
} |