Response.cs 136 B

123456
  1. namespace Application.Features.Api.Member.Follow.Toggle;
  2. public sealed record Response(
  3. bool IsFollowing,
  4. long FollowerCount
  5. );