34 lines
908 B
C#
34 lines
908 B
C#
using BeWo.Data.Entities;
|
|
using System;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace AICore.Context.Entry
|
|
{
|
|
public class SupportConceptNavigationContextEntry : NavigationContextEntry<SupportConcept>
|
|
{
|
|
[JsonPropertyName("Hilfeplan-ID")]
|
|
public long SupportConceptOid { get; set; }
|
|
|
|
[JsonPropertyName("Adresse")]
|
|
public string AddressString { get; set; }
|
|
|
|
[JsonPropertyName("Kostentraegernamen")]
|
|
public string AllCostBearerNames { get; set; }
|
|
|
|
[JsonPropertyName("Kostentraeger")]
|
|
public string CostBearer { get; set; }
|
|
|
|
[JsonPropertyName("Kostentraeger Details")]
|
|
public string CostBearerDetailStrings { get; set; }
|
|
|
|
[JsonPropertyName("Klient")]
|
|
public object Customer { get; set; } // Typ ist unsicher, daher object
|
|
|
|
[JsonPropertyName("Startdatum")]
|
|
public DateTime? StartDate { get; set; }
|
|
|
|
[JsonPropertyName("Enddatum")]
|
|
public DateTime? EndDate { get; set; }
|
|
}
|
|
}
|