2021-05-12 16:03:14 +05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
|
|
|
|
public interface ITelemetryTracker
|
|
|
|
|
{
|
2021-05-14 09:58:02 +05:00
|
|
|
|
void SaveRequestDate(string uid);
|
|
|
|
|
IEnumerable<string> GetRequestUids();
|
2021-05-12 16:03:14 +05:00
|
|
|
|
}
|
|
|
|
|
}
|