sharp-chat/SharpChat.Common/Protocol/ServerAttribute.cs
2022-08-30 17:05:29 +02:00

9 lines
204 B
C#

using SharpChat.Reflection;
namespace SharpChat.Protocol {
public class ServerAttribute : ObjectConstructorAttribute {
public ServerAttribute(string name) : base(name) {
}
}
}