namespace Application.Features.Api.ChannelTitle.GetMyTitles; public sealed record Response(IReadOnlyList Groups); public sealed record ChannelTitleGroup( int ChannelID, string ChannelName, string? ChannelThumb, long CumulativeAmount, int DonationCount, int? SelectedTitleID, IReadOnlyList Titles ); public sealed record MyTitleItem( int ID, string Name, string? Description, long MinAmount, string Color, string? IconUrl, bool IsAcquired, bool IsSelected, long RemainingAmount );