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