forked from ddrilling/AsbCloudServer
27 lines
661 B
C#
27 lines
661 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data.GTR
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Запись WITS
|
|||
|
/// </summary>
|
|||
|
public class WitsRecordDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Id записи
|
|||
|
/// </summary>
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Дата создания записи
|
|||
|
/// </summary>
|
|||
|
public DateTime Date { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Параметры. Ключ - id_item. ValueContainer содержит значение.
|
|||
|
/// </summary>
|
|||
|
public Dictionary<int, JsonValue> Items { get; set; } = new();
|
|||
|
}
|
|||
|
}
|