Files
serein-flow/Net461DllTest/Signal/OrderSignal.cs

19 lines
357 B
C#
Raw Normal View History

2024-09-27 10:30:19 +08:00
using Serein.Library.Attributes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static Serein.Library.Attributes.PLCValueAttribute;
namespace Net461DllTest.Signal
{
public enum OrderSignal
{
View_1,
View_2,
Command_1,
Command_2,
2024-09-27 10:30:19 +08:00
}
}