27 lines
610 B
C#
27 lines
610 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 XRBuyer
|
|
{
|
|
public string Name { get; set; }
|
|
public string ID { 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 string Reference { get; set; }
|
|
public XRBuyerBankAccount BankAccount { get; set; }
|
|
|
|
public XRBuyer()
|
|
{
|
|
BankAccount = new XRBuyerBankAccount();
|
|
}
|
|
}
|
|
}
|