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