22 lines
428 B
C#
22 lines
428 B
C#
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; }
|
|
}
|
|
}
|