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); }