DD.WellWorkover.Cloud/AsbCloudApp/Data/SAUB/EventDto.cs
2023-03-10 05:09:41 +05:00

44 lines
1.5 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.

using System.ComponentModel.DataAnnotations;
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>
[Range(1, int.MaxValue, ErrorMessage = "Id категории события не может быть отрицательным")]
public int IdCategory { get; set; }
/// <summary>
/// переменная сервера обмена информацией с полевым оборудованием
/// </summary>
public string Tag { get; set; } = string.Empty;
/// <summary>
/// тип определения наступления события
/// </summary>
[Range(1, int.MaxValue, ErrorMessage = "Id типа события не может быть отрицательным")]
public int EventType { get; set; }
/// <summary>
/// флаг, следует ли воспроизводить звук при наступлении события
/// </summary>
public int IdSound { get; set; }
}
}