2024-04-18 15:53:05 +05:00
|
|
|
using AsbCloudApp.Data.SAUB;
|
|
|
|
using Refit;
|
|
|
|
|
|
|
|
namespace AsbCloudWebApi.IntegrationTests.Clients;
|
|
|
|
|
|
|
|
public interface ISetpointsClient
|
|
|
|
{
|
2024-07-04 11:02:45 +05:00
|
|
|
private const string BaseRoute = "/api/telemetry/{uid}/Setpoints";
|
2024-04-18 15:53:05 +05:00
|
|
|
|
2024-07-04 11:02:45 +05:00
|
|
|
[Get(BaseRoute)]
|
|
|
|
Task<IApiResponse<IEnumerable<SetpointsRequestDto>>> GetByTelemetryUidAsync(string uid);
|
2024-04-18 15:53:05 +05:00
|
|
|
}
|