using Application.Features.Api.Feed.Shared; namespace Application.Features.Api.Feed.GetByUser; public sealed class Response { public required string AuthorSID { get; init; } public required string AuthorName { get; init; } public long Total { get; init; } public required IReadOnlyList List { get; init; } }