Wonky.Client/Wonky.Entity/DTO/B2BBusinessInfo.cs

13 lines
427 B
C#
Raw Normal View History

namespace Wonky.Entity.DTO;
public class B2BBusinessInfo
{
public string Address1 { get; set; } = "";
public string Address2 { get; set; } = "";
public string City { get; set; } = "";
public string CompanyId { get; set; } = "";
public string Name { get; set; } = "";
public string ZipCode { get; set; } = "";
public string Phone { get; set; } = "";
public string Email { get; set; } = "";
}