35 lines
1000 B
C#
35 lines
1000 B
C#
using BS.Shared.DataContracts.Compact;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace AICore.Context.Entry.Navigation
|
|
{
|
|
internal class SupportConceptNavigationContextEntry : NavigationContextEntry<CompactSupportConceptDC>
|
|
{
|
|
[JsonPropertyName("Hilfeplan-ID")]
|
|
public long SupportConceptOid { get; set; }
|
|
|
|
[JsonPropertyName("Adresse")]
|
|
public string AddressString { get; set; }
|
|
|
|
[JsonPropertyName("Kostentraeger Details")]
|
|
public string[] CostBearerDetailStrings { get; set; }
|
|
|
|
[JsonPropertyName("Klientname")]
|
|
public string CustomerName { get; set; }
|
|
|
|
[JsonPropertyName("Klientalias")]
|
|
public string CustomerAlias { get; set; }
|
|
|
|
[JsonPropertyName("Klient Geburtstag")]
|
|
public DateTime? CustomerDateOfBirth { get; set; }
|
|
|
|
[JsonPropertyName("Klient PLZ")]
|
|
public string CustomerPostcode { get; set; }
|
|
|
|
[JsonPropertyName("CustomerReferenceNumbers")]
|
|
public List<string> CustomerReferenceNumbers { get; set; }
|
|
}
|
|
}
|