mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
9 lines
262 B
C#
9 lines
262 B
C#
using Application.Classes;
|
|
using Application.DataTransferObjects.VsDuelLeague;
|
|
|
|
namespace Application.Interfaces;
|
|
|
|
public interface IVsDuelLeagueRepository
|
|
{
|
|
Task<Result<List<VsDuelLeagueDto>>> GetVsDuelLeaguesAsync(CancellationToken cancellationToken);
|
|
} |