TagItemDto.cs 397 Bytes
using HHECS.DAQShared.Models;

namespace HHECS.DAQShared.Dto
{
    public class TagItemDto
    {
        /// <summary>
        /// 唯一标记
        /// </summary>
        /// <remarks>对应设备属性[<see cref="EquipmentPropExtend"/>]的EquipmentTypePropTemplateCode或者Address字段</remarks>
        public string Tag { get; set; }

        public string Value { get; set; }
    }
}