using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CapMachine.Model { public class PlcBlockData { /// /// 开始地址 /// public string? StartAddress { get; set; } /// /// 值集合 /// public short[]? ArrValue { get; set; } } }