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.

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.