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