Response.cs 157 B

12345678
  1. namespace Application.Features.Api.Forum.Comment.Mention;
  2. public sealed record Response(
  3. int ID,
  4. string SID,
  5. string? Name,
  6. string? Thumb
  7. );