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