Response.cs 271 B

12345678910111213
  1. namespace Application.Features.Api.Crew.GetInvite;
  2. public sealed record Response(
  3. int ID,
  4. int CrewID,
  5. string CrewName,
  6. string InviterChannelName,
  7. string Nickname,
  8. byte Status,
  9. DateTime InvitedAt,
  10. DateTime ExpiresAt,
  11. bool IsExpired
  12. );