using Application.Features.Api.Feed.Shared; namespace Application.Features.Api.Feed.GetForYou; public sealed class Response { public long Total { get; init; } public required IReadOnlyList<FeedCardRow> List { get; init; } }