| 123456789101112131415 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Api.ChannelTitle.UpdateChannelTitle;
- public sealed record Command(
- int MemberID,
- int TitleID,
- string Name,
- string? Description,
- long MinAmount,
- string Color,
- string? IconUrl,
- bool IsActive
- ) : ICommand<Result>;
|