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