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