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