PlayerManagement/Application/Interfaces/IVsDuelParticipantRepository.cs
Tomasi - Developing 35e83c4735 beta 0.0.3
2024-11-26 08:43:01 +01:00

9 lines
317 B
C#

using Application.Classes;
using Application.DataTransferObjects.VsDuelParticipant;
namespace Application.Interfaces;
public interface IVsDuelParticipantRepository
{
Task<Result<VsDuelParticipantDto>> UpdateVsDuelParticipant(VsDuelParticipantDto vsDuelParticipantDto, CancellationToken cancellationToken);
}