namespace Application.Features.Api.ChannelTitle.GetChannelTitles; public sealed record Response(IReadOnlyList Titles); public sealed record TitleItem( int ID, int ChannelID, string Name, string? Description, long MinAmount, string Color, string? IconUrl, int SortOrder, bool IsActive );