Skip to content

Commit 5aa83f9

Browse files
committed
add ntrig call
1 parent 51e4a4e commit 5aa83f9

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)