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ů.

18 řádky
414B

  1. namespace Campaign_Tracker.Server.Municipalities;
  2. public sealed record MunicipalityAddress(
  3. string AddressId,
  4. string ProfileId,
  5. string AddressType,
  6. string Street,
  7. string City,
  8. string State,
  9. string ZipCode,
  10. DateTimeOffset EffectiveDate,
  11. bool IsCurrent,
  12. bool IsDeleted,
  13. DateTimeOffset CreatedAt,
  14. string CreatedBy,
  15. DateTimeOffset UpdatedAt,
  16. string UpdatedBy);

Powered by TurnKey Linux.