13 lines
393 B
C#
13 lines
393 B
C#
using System.Collections.Generic;
|
|
using Kreta.Client.ClientBase.Response;
|
|
using Kreta.Client.GlobalApi.Models;
|
|
using Kreta.Framework;
|
|
|
|
namespace Kreta.Client.GlobalApi
|
|
{
|
|
public interface IGlobalApiClient
|
|
{
|
|
GetTokenResponse GetPrivateToken();
|
|
List<AdatbaziselerhetosegResponseModel> GetKretaAdatbaziselerhetosegek(string privateToken, SystemType systemType);
|
|
}
|
|
}
|