19 lines
420 B
C#
19 lines
420 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Persistence.Models;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Интерфейс, описывающий временные данные
|
|||
|
/// </summary>
|
|||
|
public interface ITimeSeriesAbstractDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// временная отметка
|
|||
|
/// </summary>
|
|||
|
DateTimeOffset Date { get; set; }
|
|||
|
}
|