39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.DataContracts.Compact
|
|
{
|
|
[DataContract]
|
|
public class CompactGkvAbrechnungDC : IDataContract
|
|
{
|
|
[JsonProperty("gkvioid")]
|
|
[DataMember] public long GkvAbrechnungOid { get; set; }
|
|
|
|
[JsonProperty("gkvicreated")]
|
|
[DataMember] public DateTime GkvAbrechnungErstelltAm { get; set; }
|
|
|
|
[JsonProperty("gkvisum")]
|
|
[DataMember] public decimal GkvAbrechnungBetrag { get; set; }
|
|
|
|
[JsonProperty("sentdatetime")]
|
|
[DataMember] public DateTime? GkvProtokollZuletztGesendet { get; set; }
|
|
|
|
[JsonProperty("sentdakotasuccess")]
|
|
[DataMember] public bool GkvProtokollSentDakotaSuccess { get; set; }
|
|
|
|
[JsonProperty("resulttype")]
|
|
[DataMember] public GkvTransferResultType? GkvProtokollResultType { get; set; }
|
|
|
|
[JsonProperty("resultmessage")]
|
|
[DataMember] public string GkvProtokollResultMessage { get; set; }
|
|
|
|
[JsonProperty("resultdatetime")]
|
|
[DataMember] public DateTime? GkvProtokollResultDatum { get; set; }
|
|
}
|
|
}
|