forked from ddrilling/AsbCloudServer
34 lines
661 B
C#
34 lines
661 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace AsbCloudApp.Data.GTR;
|
|
|
|
/// <summary>
|
|
/// Запись WITS
|
|
/// </summary>
|
|
public class WitsItemRecordDto
|
|
{
|
|
/// <summary>
|
|
/// Record Id
|
|
/// </summary>
|
|
[Required]
|
|
public int IdRecord { get; set; }
|
|
|
|
/// <summary>
|
|
/// Item Id
|
|
/// </summary>
|
|
[Required]
|
|
public int IdItem { get; set; }
|
|
|
|
/// <summary>
|
|
/// Дата создания записи
|
|
/// </summary>
|
|
[Required]
|
|
public DateTime Date { get; set; }
|
|
|
|
/// <summary>
|
|
/// Значение
|
|
/// </summary>
|
|
[Required]
|
|
public JsonValue Value { get; set; } = default!;
|
|
} |