DD.WellWorkover.Cloud/AsbCloudApp/Data/SAUB/EventDto.cs

39 lines
1.2 KiB
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.

namespace AsbCloudApp.Data.SAUB
{
/// <summary>
/// Описание шаблона события панели оператора
/// </summary>
public class EventDto : IId
{
/// <summary>
/// id события
/// </summary>
public int Id { get; set; }
/// <summary>
/// шаблон текста сообщения
/// </summary>
public string Message { get; set; } = string.Empty;
/// <summary>
/// id категории события
/// </summary>
public int IdCategory { get; set; }
/// <summary>
/// переменная сервера обмена информацией с полевым оборудованием
/// </summary>
public string Tag { get; set; } = string.Empty;
/// <summary>
/// тип определения наступления события
/// </summary>
public int EventType { get; set; }
/// <summary>
/// флаг, следует ли воспроизводить звук при наступлении события
/// </summary>
public int IdSound { get; set; }
}
}