CommandAssemblyConfig.cs 499 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace SuperSocket.SocketBase.Config
  6. {
  7. /// <summary>
  8. /// Command assembly config
  9. /// </summary>
  10. [Serializable]
  11. public class CommandAssemblyConfig : ICommandAssemblyConfig
  12. {
  13. /// <summary>
  14. /// Gets or sets the assembly name.
  15. /// </summary>
  16. /// <value>
  17. /// The assembly.
  18. /// </value>
  19. public string Assembly { get; set; }
  20. }
  21. }