7 lines
174 B
C#
7 lines
174 B
C#
|
|
namespace PlcTool.Siemens.PLCAttribute;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// plc 插槽
|
|||
|
|
/// </summary>
|
|||
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|||
|
|
public class SlotAttribute : Attribute { }
|