Wonky.Client/Wonky.Entity/DTO/UserListAdminView.cs

11 lines
346 B
C#
Raw Normal View History

2022-06-26 11:38:47 +02:00
namespace Wonky.Entity.DTO;
2022-06-29 09:15:57 +02:00
public class UserListAdminView
2022-06-26 11:38:47 +02:00
{
public string UserId { get; set; } = "";
2022-06-26 18:22:38 +02:00
public string SalesRep { get; set; } = "";
2022-06-26 11:38:47 +02:00
public string FullName { get; set; } = "";
public string Email { get; set; } = "";
public string CountryCode { get; set; } = "";
2022-06-26 18:22:38 +02:00
public string PhoneNumber { get; set; } = "";
2022-06-26 11:38:47 +02:00
}