V1.2
This commit is contained in:
21
CapMachine.Model/PLCParsModel/PlcBlockData.cs
Normal file
21
CapMachine.Model/PLCParsModel/PlcBlockData.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CapMachine.Model
|
||||
{
|
||||
public class PlcBlockData
|
||||
{
|
||||
/// <summary>
|
||||
/// 开始地址
|
||||
/// </summary>
|
||||
public string? StartAddress { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 值集合
|
||||
/// </summary>
|
||||
public short[]? ArrValue { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user