2025-06-20 18:53:29 +08:00
|
|
|
|
using PMSWPF.Enums;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PMSWPF.Models;
|
|
|
|
|
|
|
|
|
|
|
|
public class VariableTable
|
|
|
|
|
|
{
|
2025-06-23 17:01:06 +08:00
|
|
|
|
public int Id { get; set; }
|
2025-06-20 18:53:29 +08:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
|
public ProtocolType ProtocolType { get; set; }
|
|
|
|
|
|
public List<DataVariable> DataVariables { get; set; }
|
2025-06-30 13:06:51 +08:00
|
|
|
|
public Device? Device { get; set; }
|
2025-06-20 18:53:29 +08:00
|
|
|
|
}
|