Command.cs 218 B

123456
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Channel.ResetWidgetToken;
  4. public sealed record Command(int ChannelID, int MemberID) : ICommand<Result<string>>;