Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

18 wiersze
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.