1
0
mirror of synced 2024-12-19 09:45:54 +01:00
GC-local-server-rewrite/Application/Game/Card/Write/WriteItemCommand.cs
2023-02-11 01:24:24 +08:00

17 lines
619 B
C#

using Application.Common.Models;
using Application.Interfaces;
namespace Application.Game.Card.Write;
public record WriteItemCommand(long CardId, string Data) : IRequestWrapper<string>;
public class WriteItemCommandHandler : CardRequestHandlerBase<WriteItemCommand, string>
{
public WriteItemCommandHandler(ICardDependencyAggregate aggregate) : base(aggregate) {}
public override Task<ServiceResult<string>> Handle(WriteItemCommand request, CancellationToken cancellationToken)
{
// TODO: Add proper implementation
return Task.FromResult(new ServiceResult<string>(request.Data));
}
}