15 lines
308 B
C#
15 lines
308 B
C#
using LSFE.MobApp.Contracts;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.MobApp.Contracts
|
|
{
|
|
public interface IApiClientFactory
|
|
{
|
|
IApiClient<T> CreateClient<T>(string endpoint) where T : class;
|
|
}
|
|
}
|