mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
15 lines
353 B
C#
15 lines
353 B
C#
using System;
|
|
|
|
namespace NexusForever.WorldServer.Command
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)]
|
|
public class CommandTargetAttribute : Attribute
|
|
{
|
|
public Type TargetType { get; }
|
|
|
|
public CommandTargetAttribute(Type targetType)
|
|
{
|
|
TargetType = targetType;
|
|
}
|
|
}
|
|
}
|