Wonky.Client/Wonky.Entity/DTO/AdminUserListView.cs
2022-06-26 11:38:47 +02:00

10 lines
No EOL
299 B
C#

namespace Wonky.Entity.DTO;
public class AdminUserListView
{
public string UserId { get; set; } = "";
public string FullName { get; set; } = "";
public string Email { get; set; } = "";
public string CountryCode { get; set; } = "";
public string PhoneNUmber { get; set; } = "";
}