TypeProviderConfig.cs 508 B

123456789101112131415161718192021222324
  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. /// TypeProviderConfig
  9. /// </summary>
  10. [Serializable]
  11. public class TypeProviderConfig : ITypeProvider
  12. {
  13. /// <summary>
  14. /// Gets the name.
  15. /// </summary>
  16. public string Name { get; set; }
  17. /// <summary>
  18. /// Gets the type.
  19. /// </summary>
  20. public string Type { get; set; }
  21. }
  22. }