SellerInfo
public class EBillSellerInfoDto : AddressInfoDto
{
public string User { get; set; }
public string TableNo { get; set; }
}public class AddressInfoDto
{
public string Address { get; set; }
public string District { get; set; }
public string City { get; set; }
public string Country { get; set; }
public string PostalCode { get; set; }
public string Phone { get; set; }
public string Fax { get; set; }
public string Mail { get; set; }
public string WebSite { get; set; }
}User
TableNo
Address
District
City
Country
PostalCode
Phone
Fax
Mail
WebSite
Last updated