7 lines
149 B
C#
7 lines
149 B
C#
using VigilCare.Simulation;
|
|
|
|
public interface ISimulationClientFactory
|
|
{
|
|
Task<VigilCareApiClient> CreateAsync(CancellationToken ct = default);
|
|
}
|