Wonky.Client/Wonky.Entity/DTO/UserListAdminView.cs
Frede Hundewadt d4eb8f94a8 wip
2022-06-29 09:15:57 +02:00

11 lines
No EOL
346 B
C#

namespace Wonky.Entity.DTO;
public class UserListAdminView
{
public string UserId { get; set; } = "";
public string SalesRep { get; set; } = "";
public string FullName { get; set; } = "";
public string Email { get; set; } = "";
public string CountryCode { get; set; } = "";
public string PhoneNumber { get; set; } = "";
}