ICommandAssemblyConfig.cs 464 B

123456789101112131415161718192021
  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. /// The basic interface for command assembly config
  9. /// </summary>
  10. public interface ICommandAssemblyConfig
  11. {
  12. /// <summary>
  13. /// Gets the assembly name.
  14. /// </summary>
  15. /// <value>
  16. /// The assembly.
  17. /// </value>
  18. string Assembly { get; }
  19. }
  20. }