12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace SuperSocket.SocketBase.Config
- {
-
-
-
- [Serializable]
- public class CommandAssemblyConfig : ICommandAssemblyConfig
- {
-
-
-
-
-
-
- public string Assembly { get; set; }
- }
- }
|