15 lines
556 B
C#
15 lines
556 B
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BeWoDatabaseTerminator.Data
|
|
{
|
|
/// <summary>
|
|
/// Ist die Server-Antwort mit den Stati. Enthält ein Wörterbuch, bei dem die Keys die Kundennummern bzw. Tenants sind und die Values die ContractStati darstellen.
|
|
/// </summary>
|
|
[JsonConverter(typeof(ContractStatusCollectionJsonConverter))]
|
|
public class ContractStatusCollection
|
|
{
|
|
public Dictionary<string, ContractStatus> ContractStatuses { get; set; } = new Dictionary<string, ContractStatus>();
|
|
}
|
|
}
|