Wonky.Client/Wonky.Entity/DTO/AdminAdviserListView.cs
2022-06-26 18:22:38 +02:00

11 lines
No EOL
349 B
C#

namespace Wonky.Entity.DTO;
public class AdminAdviserListView
{
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; } = "";
}