We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51e4a4e commit 5aa83f9Copy full SHA for 5aa83f9
TiaCodegen/Commands/Functions/NTrigCall.cs
@@ -0,0 +1,16 @@
1
+using TiaCodegen.Commands.Coils;
2
+using TiaCodegen.Commands.Signals;
3
+using TiaCodegen.Interfaces;
4
+
5
+namespace TiaCodegen.Commands.Functions
6
+{
7
+ public class NTrigCall : BaseNPCoil, IPartName
8
+ {
9
+ public NTrigCall(Signal signal) : base(signal, null, null)
10
11
+ PartName = "NBox";
12
+ }
13
14
+ public string PartName { get; set; }
15
16
+}
0 commit comments