Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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.