Files
serein-flow/Net462DllTest/Enums/FromValue.cs
2024-10-07 15:15:18 +08:00

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,
}
}