Files
BeWoPlaner/Service/Invoicing/FiBuExport/FiBuDatensatz.cs
2026-06-18 11:05:34 +02:00

28 lines
929 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BeWo.Service.Invoicing.FiBuExport
{
public class FiBuDatensatz
{
public String CustomerFirstName { get; set; }
public String CustomerLastName { get; set; }
public decimal? Betrag { get; set; }
public String Belegnummer { get; set; }
public DateTime Datum { get; set; }
public String DebitorNummer { get; set; }
public String KontoHilfeplan { get; set; }
public String KostenstelleKlient { get; set; }
public String KostenstelleHilfeplan { get; set; }
public String Buchungstext { get; set; }
public String InvoiceId { get; set; }
public String OrganisationName { get; set; }
public long? Costbearer2SupportConceptOid { get; set; }
public long? CustomerOid { get; set; }
}
}