15 lines
254 B
C#
15 lines
254 B
C#
|
using System;
|
|||
|
|
|||
|
namespace ET
|
|||
|
{
|
|||
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
|
|||
|
public class BaseAttribute: Attribute
|
|||
|
{
|
|||
|
public Type AttributeType { get; }
|
|||
|
|
|||
|
public BaseAttribute()
|
|||
|
{
|
|||
|
this.AttributeType = this.GetType();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|