You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1011 B
C#

#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2025 WenJY
* CLR4.0.30319.42000
* Mr.Wen's MacBook Pro
* Sln.Imm.Daemon.Model.dto
* AD0BDBDD-F957-4589-A6AE-934E5A1FBE0F
*
* WenJY
*
* 2025-09-22 17:24:21
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
namespace Sln.Imm.Daemon.Model.dto;
public class OpcNode
{
public string NodeId { get; set; }
public string DisplayName { get; set; }
public object Value { get; set; }
public DateTimeOffset SourceTimestamp { get; set; }
public string DataType { get; set; }
public string AccessLevel { get; set; }
}