Wonky.Client/Wonky.Entity/Views/UserCustomerInfoView.cs
2023-03-18 16:01:22 +01:00

15 lines
No EOL
545 B
C#

namespace Wonky.Entity.Views;
public class UserCustomerInfoView
{
public string CompanyId { get; set; } = "";
public string ContactId { get; set; } = "";
public string CountryCode { get; set; } = "";
public string Description { get; set; } = "";
public string Email { 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; } = "";
}