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