mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
22 lines
473 B
C#
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;
|
|
}
|
|
}
|
|
}
|