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

17 lines
345 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BeWo.Data.Models.XRechnung
{
public class XRBuyerBankAccount
{
public string IBAN { get; set; }
public string BIC { get; set; }
public string Owner { get; set; }
public string MandateID { get; set; }
}
}