13 lines
256 B
C#
13 lines
256 B
C#
|
using System;
|
|||
|
|
|||
|
namespace BITKit
|
|||
|
{
|
|||
|
[AttributeUsage(AttributeTargets.Method)]
|
|||
|
public class BITCommandAttribute : Attribute { }
|
|||
|
[AttributeUsage(AttributeTargets.Field)]
|
|||
|
public class InjectAttribute : System.Attribute
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|