Fix typecodes

This commit is contained in:
Felix Weiß
2023-07-21 18:23:20 +02:00
parent 9bcffad77b
commit a399e0fa16
38 changed files with 1058 additions and 619 deletions

View File

@@ -0,0 +1,19 @@
using MewtocolNet;
using Xunit;
using Xunit.Abstractions;
using MewtocolNet.Helpers;
namespace MewtocolTests {
public class TestPlcTypeEnumDuplicates {
private readonly ITestOutputHelper output;
public TestPlcTypeEnumDuplicates(ITestOutputHelper output) {
this.output = output;
}
}
}