Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

14 řádky
416B

  1. namespace Campaign_Tracker.Server.Municipalities;
  2. public sealed record MunicipalityPriorCycleDefaults(
  3. string CycleId,
  4. string JCode,
  5. string CycleName,
  6. DateTimeOffset CompletedAt,
  7. IReadOnlyList<MunicipalityPriorCycleServiceDefault> Services);
  8. public sealed record MunicipalityPriorCycleServiceDefault(
  9. string ServiceType,
  10. string Summary,
  11. IReadOnlyDictionary<string, string> Values);

Powered by TurnKey Linux.