mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 08:10:47 +08:00
19 lines
390 B
C#
19 lines
390 B
C#
using Net462DllTest.View;
|
|
using Serein.Library.Attributes;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Net462DllTest.Signal
|
|
{
|
|
public enum FromValue
|
|
{
|
|
[BindValue(typeof(FromWorkBenchView))]
|
|
FromWorkBenchView,
|
|
[BindValue(typeof(TestFormView))]
|
|
TestFormView,
|
|
}
|
|
}
|