1
0
mirror of synced 2024-12-18 17:25:54 +01:00
GC-local-server-rewrite/Application/Game/Card/Write/WriteCoinCommand.cs

14 lines
555 B
C#
Raw Normal View History

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