using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace AsbCloudApp.Data.GTR; /// /// Запись WITS /// public class WitsRecordDto { /// /// Id записи /// [Required] public int Id { get; set; } /// /// Дата создания записи /// [Required] public DateTime Date { get; set; } /// /// Параметры. Ключ - id_item. ValueContainer содержит значение. /// [Required] public Dictionary Items { get; set; } = new(); }