1
0
mirror of synced 2025-01-18 14:24:02 +01:00

15 lines
556 B
C#
Raw Normal View History

2023-02-16 16:53:02 +08:00
namespace Application.Game.Card.OnlineMatching;
public record UpdateOnlineMatchingCommand(long CardId, string Data) : IRequestWrapper<string>;
2023-02-17 00:38:01 +08:00
public class UpdateOnlineMatchingCommandHandler : RequestHandlerBase<UpdateOnlineMatchingCommand, string>
{
public UpdateOnlineMatchingCommandHandler(ICardDependencyAggregate aggregate) : base(aggregate)
{
}
public override Task<ServiceResult<string>> Handle(UpdateOnlineMatchingCommand request, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}