Skip to content

Commit 28a53b1

Browse files
authored
Merge pull request #11 from dotnetprojects/featureNtrig
add ntrig call
2 parents ac55be0 + 5aa83f9 commit 28a53b1

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)