You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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