CPF/CPF.Windows/Json/Formatter/Internal/FuncLableAttribute.cs
2023-11-21 23:05:03 +08:00

22 lines
473 B
C#

using System;
namespace CPF.Windows.Json
{
[AttributeUsage(AttributeTargets.Method)]
internal class FuncLableAttribute : Attribute
{
public FuncType _Type;
public int _Priority;
public FuncLableAttribute(FuncType funcType)
{
_Type = funcType;
}
public FuncLableAttribute(FuncType funcType, int priority)
{
_Type = funcType;
_Priority = priority;
}
}
}