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

9 lines
204 B
C#
Raw Normal View History

2022-08-30 15:05:29 +00:00
using SharpChat.Reflection;
namespace SharpChat.Protocol {
public class ServerAttribute : ObjectConstructorAttribute {
public ServerAttribute(string name) : base(name) {
}
}
}