Wonky.Client/Wonky.Entity/Views/UserInfoAdvisorView.cs

15 lines
533 B
C#
Raw Normal View History

2023-03-18 16:01:22 +01:00
namespace Wonky.Entity.Views;
2023-04-02 14:39:23 +02:00
public class UserInfoAdvisorView
2023-03-18 16:01:22 +01:00
{
public string CountryCode { get; set; } = "";
public string Description { get; set; } = "";
public string Email { get; set; } = "";
public bool EmailConfirmed { get; set; }
public bool EShop { get; set; }
public string FirstName { get; set; } = "";
public string LastName { get; set; } = "";
public string PhoneNumber { get; set; } = "";
public string SalesRep { get; set; } = "";
public string UserId { get; set; } = "";
}