123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace SuperSocket.SocketBase.Config
- {
-
-
-
- [Serializable]
- public class TypeProviderConfig : ITypeProvider
- {
-
-
-
- public string Name { get; set; }
-
-
-
- public string Type { get; set; }
- }
- }
|