Files
EmptyMauiApp/MauiApp/Core/RestClient/IntegryApi/Contracts/IIntegrySystemRestClient.cs
2023-10-18 19:02:51 +02:00

8 lines
187 B
C#

using MauiApp.Core.RestClient.IntegryApi.Dto;
namespace MauiApp.Core.RestClient.IntegryApi.Contracts;
public interface IIntegrySystemRestClient
{
Task<List<UserDto>> GetUser();
}