forked from ddrilling/AsbCloudServer
12 lines
309 B
C#
12 lines
309 B
C#
|
using AsbCloudApp.Data.SAUB;
|
||
|
using Refit;
|
||
|
|
||
|
namespace AsbCloudWebApi.IntegrationTests.Clients;
|
||
|
|
||
|
public interface ISetpointsClient
|
||
|
{
|
||
|
private const string BaseRoute = "/api/telemetry/{uid}/Setpoints";
|
||
|
|
||
|
[Get(BaseRoute)]
|
||
|
Task<IApiResponse<IEnumerable<SetpointsRequestDto>>> GetByTelemetryUidAsync(string uid);
|
||
|
}
|