7 lines
187 B
C#
7 lines
187 B
C#
|
|
namespace PlcTool.Siemens.PLCAttribute;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 用于标记 PLC 的IP
|
|||
|
|
/// </summary>
|
|||
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|||
|
|
public class PlcIPAttribute : Attribute { }
|