25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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