Files
BeWoPlaner/Data/Models/XRechnung/XRSellerBankAccount.cs

18 lines
388 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 XRSellerBankAccount
{
public string IBAN { get; set; }
public string BIC { get; set; }
public string Owner { get; set; }
public string Reference { get; set; }
public string ReferenceID { get; set; }
}
}