Skip to content
Snippets Groups Projects
Clients.cs 450 B
Newer Older
Michal Ondrejička's avatar
Michal Ondrejička committed
using SDK.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace tDevkit
{
    //(1/1)
    public partial class DevkitConnectorV3
    {
        public async Task<ClientContract[]> GetClients()
        {
            string subUrl = Address.Clients;
            var response = await GetRequest<ClientContract[]>(subUrl);

            return response;
        }
    }
}