123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace SuperSocket.SocketBase.Config
- {
- /// <summary>
- /// The basic interface for command assembly config
- /// </summary>
- public interface ICommandAssemblyConfig
- {
- /// <summary>
- /// Gets the assembly name.
- /// </summary>
- /// <value>
- /// The assembly.
- /// </value>
- string Assembly { get; }
- }
- }
|