您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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