using System.Collections.ObjectModel;
using System.ComponentModel;
using DMS.Core.Enums;
namespace DMS.Core.Models;
///
/// 表示变量表信息。
///
public partial class VariableTable
{
///
/// 变量表关联的设备。
///
public Device? Device { get; set; }
///
/// 变量表关联的设备ID。
///
public int? DeviceId { get; set; }
///
/// 变量表描述。
///
public string Description { get; set; }
///
/// 变量表中包含的数据变量列表。
///
public ObservableCollection variables;
///
/// 变量表的唯一标识符。
///
public int Id { get; set; }
///
/// 表示变量表是否处于活动状态。
///
public bool IsActive { get; set; }
///
/// 变量表名称。
///
public string Name { get; set; }
///
/// 变量表使用的协议类型。
///
public ProtocolType ProtocolType { get; set; }
}