sharp-chat/SharpChat.Common/Protocol/ServerAttribute.cs

9 lines
204 B
C#

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