| 1234567891011121314 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Admin.Channel.List.Create;
- public sealed record Command(
- int MemberID,
- string SID,
- string Name,
- string? Handle,
- string YouTubeUrl,
- decimal PlatformFeeRate,
- bool IsVerified,
- bool IsActive
- ) : ICommand<int>;
|