11 lines
224 B
C#
11 lines
224 B
C#
namespace Service.Interface
|
|
{
|
|
/// <summary>
|
|
/// 时序数据存储 服务接口
|
|
/// </summary>
|
|
public interface ITimeSeriesStorageService
|
|
{
|
|
// TODO: 定义 时序数据存储 相关方法
|
|
}
|
|
}
|