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