13 lines
220 B
C#
13 lines
220 B
C#
using System;
|
|
|
|
namespace NBF
|
|
{
|
|
public abstract class BaseAttribute : Attribute
|
|
{
|
|
}
|
|
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class UIExtensionAutoBindAttribute : BaseAttribute
|
|
{
|
|
}
|
|
} |