mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
9 lines
317 B
C#
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);
|
|
} |