12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SuperSocket.SocketBase.Config
- {
-
-
-
- public partial interface IServerConfig
- {
-
-
-
-
-
-
- string DefaultCulture { get; }
- }
- }
|