1
0
mirror of synced 2024-12-26 04:44:53 +01:00
GC-local-server-rewrite/Application/Game/Card/Write/WriteSoundEffectCommand.cs

17 lines
654 B
C#
Raw Normal View History

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