12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace SuperSocket.SocketBase.Config
- {
- /// <summary>
- /// Command assembly config
- /// </summary>
- [Serializable]
- public class CommandAssemblyConfig : ICommandAssemblyConfig
- {
- /// <summary>
- /// Gets or sets the assembly name.
- /// </summary>
- /// <value>
- /// The assembly.
- /// </value>
- public string Assembly { get; set; }
- }
- }
|