16 lines
292 B
C#
16 lines
292 B
C#
|
|
namespace PlcTool.Siemens.PLCAttribute;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 用于标记PLC的系列
|
|||
|
|
/// </summary>
|
|||
|
|
/// <remarks>
|
|||
|
|
/// 支持的string:
|
|||
|
|
/// 1500
|
|||
|
|
/// 1200
|
|||
|
|
/// 300
|
|||
|
|
/// 400
|
|||
|
|
/// 200
|
|||
|
|
/// 200s
|
|||
|
|
/// </remarks>
|
|||
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|||
|
|
public class PlcKindAttribute : Attribute { }
|