8 lines
204 B
C#
8 lines
204 B
C#
using SharpChat.Reflection;
|
|
|
|
namespace SharpChat.Protocol {
|
|
public class ServerAttribute : ObjectConstructorAttribute {
|
|
public ServerAttribute(string name) : base(name) {
|
|
}
|
|
}
|
|
}
|