Wonky.Client/Wonky.Entity/DTO/B2BAdvisorInfo.cs
Frede Hundewadt eb518b3429 misc cosmetic changes
office customer list
office customer list added isHidden = 1 to custom page filter
office create order added salesRep name
draft - added property to use for enabling disabling submit button
B2B page work
2023-12-06 12:53:24 +01:00

11 lines
No EOL
336 B
C#

namespace Wonky.Entity.DTO;
public class B2BAdvisorInfo
{
public string AdvisorId { get; set; } = "";
public string CountryCode { get; set; } = "";
public string Email { get; set; } = "";
public string Name { get; set; } = "";
public string Phone { get; set; } = "";
public string SalesRep { get; set; } = "";
}