mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-04 16:50:48 +08:00
22 lines
363 B
C#
22 lines
363 B
C#
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
|
|
{
|
|
A,
|
|
B,
|
|
C,
|
|
D,
|
|
E,
|
|
F,
|
|
G
|
|
}
|
|
}
|