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

16 行
364B

  1. namespace Campaign_Tracker.Server.Municipalities;
  2. public sealed record MunicipalityContact(
  3. string ContactId,
  4. string ProfileId,
  5. string ContactType,
  6. string Name,
  7. string? RoleTitle,
  8. string? Phone,
  9. string? Email,
  10. bool IsDeleted,
  11. DateTimeOffset CreatedAt,
  12. string CreatedBy,
  13. DateTimeOffset UpdatedAt,
  14. string UpdatedBy);

Powered by TurnKey Linux.