1
0
mirror of synced 2024-12-18 17:25:54 +01:00
GC-local-server-rewrite/Application/Game/Card/Write/WriteCondCommand.cs
2023-10-12 02:20:43 +08:00

14 lines
554 B
C#

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