11 lines
231 B
C#
11 lines
231 B
C#
namespace Voile.Common.Reflection;
|
|
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
|
|
public sealed class VoilePluginAttribute : Attribute
|
|
{
|
|
public VoilePluginAttribute()
|
|
{
|
|
|
|
}
|
|
}
|