forked from ddrilling/AsbCloudServer
864d851b6a
Adapt contect to use hypertables. Refactor TelemetryDataBaseService to avoid duplicate keys and try to save as more as posible
11 lines
173 B
C#
11 lines
173 B
C#
using System;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public interface ITelemetryData
|
|
{
|
|
int IdTelemetry { get; set; }
|
|
DateTime Date { get; set; }
|
|
}
|
|
}
|