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.

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