23 lines
662 B
C#
23 lines
662 B
C#
// ********************************************************************************
|
|
// 文件名字: S1F4Item
|
|
// 文件描述: S1F4Item
|
|
// 开发人员: Michael
|
|
// 创建时间: 2019/11/8 0:08
|
|
//
|
|
// 更新历史:
|
|
// + 创建 S1F4Item.cs 文件. by Michael @2019/11/8 0:08
|
|
// ********************************************************************************
|
|
using Glorysoft.SECS.EQP.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Glorysoft.SECS.EQP.Message
|
|
{
|
|
[Serializable]
|
|
public class S1F4Item : BaseMessage
|
|
{
|
|
public List<object> SVs { get; set; }
|
|
|
|
public S1F4Item() => SVs = new List<object>();
|
|
}
|
|
} |