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