30 lines
729 B
C#
30 lines
729 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BeWo.Data.Models.XRechnung
|
|
{
|
|
public class XRSeller
|
|
{
|
|
public string Name { get; set; }
|
|
public string ID { get; set; }
|
|
public string TaxID { get; set; }
|
|
public string VatID { get; set; }
|
|
public string Street { get; set; }
|
|
public string ZipCode { get; set; }
|
|
public string City { get; set; }
|
|
public string EMail { get; set; }
|
|
public string CountryCode { get; set; }
|
|
public XRSellerContact Contact { get; set; }
|
|
public XRSellerBankAccount BankAccount { get; set; }
|
|
|
|
public XRSeller()
|
|
{
|
|
Contact = new XRSellerContact();
|
|
BankAccount = new XRSellerBankAccount();
|
|
}
|
|
}
|
|
}
|