mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
9 lines
336 B
C#
9 lines
336 B
C#
namespace EggLink.DanhengServer.GameServer.Plugin.Constructor;
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class PluginInfo(string name, string description, string version) : Attribute
|
|
{
|
|
public string Name { get; } = name;
|
|
public string Description { get; } = description;
|
|
public string Version { get; } = version;
|
|
} |