INetContainer.cs 225 B

1234567891011
  1. using NetCore.ContentParse;
  2. using NetCore.Protocol;
  3. namespace NetCore.NetServerCoreBasic
  4. {
  5. public interface INetContainer
  6. {
  7. IContentParse iContentParse { get; }
  8. IProtocol iProtocol { get; }
  9. }
  10. }