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