Wonky.Client/Wonky.Entity/DTO/B2BAdvisorInfo.cs

11 lines
336 B
C#
Raw Normal View History

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; } = "";
}