DD.WellWorkover.Cloud/AsbCloudApp/Data/TelemetryDataDto.cs
2021-04-07 18:01:56 +05:00

29 lines
923 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Text;
namespace AsbCloudApp.Data
{
/// <summary>
/// Формат посылки от панели к облаку.
/// Панель копит у себя данные и при удачной отправке помечает как отправленные.
/// </summary>
public class TelemetryDataDto
{
public DateTime Date { get; set; }
/// <summary>
/// Версия ПО панели.
/// Нужна будет для разбора информации
/// </summary>
public string HmiVersion { get; set; }
public string UserName { get; set; }
public List<DataSaubBaseDto> DataSaub { get; set; }
/// TODO:
//public List<EventDto> EventsDictiotary { get; set; }
//public List<MessageDto> Messages { get; set; }
}
}