forked from ddrilling/AsbCloudServer
11 lines
204 B
C#
11 lines
204 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface ITelemetryTracker
|
|
{
|
|
void SaveRequest(string id);
|
|
IEnumerable<string> GetRequests();
|
|
}
|
|
}
|