Wonky.Client/Wonky.Entity/Views/UserListAdminView.cs

11 lines
348 B
C#
Raw Normal View History

2022-07-01 10:02:29 +02:00
namespace Wonky.Entity.Views;
2022-06-26 11:38:47 +02:00
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
}