using Application.Abstractions.Messaging; namespace Application.Features.Admin.Channel.List.Update; public sealed record Command( int ID, string Name, string? Handle, string YouTubeUrl, decimal PlatformFeeRate, bool IsVerified, bool IsActive ) : ICommand;