namespace Application.Features.Api.Feed.GetSuggestedFollows; public sealed class Response { public required IReadOnlyList List { get; init; } public sealed class Row { public required string SID { get; init; } public string? Name { get; init; } public string? Thumb { get; init; } public string? Summary { get; init; } public bool IsCreator { get; init; } public long FollowerCount { get; init; } } }