Wonky.Client/Wonky.Entity/DTO/B2BBusinessInfo.cs
Frede Hundewadt 71a7584575 WIP b2b
2023-09-19 17:58:48 +02:00

14 lines
No EOL
473 B
C#

namespace Wonky.Entity.DTO;
public class B2BBusinessInfo
{
public string Account { get; set; } = "";
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; } = "";
}