RootConfig.Net45.cs 442 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SuperSocket.SocketBase.Config
  7. {
  8. public partial class RootConfig : IRootConfig
  9. {
  10. /// <summary>
  11. /// Gets or sets the default culture.
  12. /// </summary>
  13. /// <value>
  14. /// The default culture.
  15. /// </value>
  16. public string DefaultCulture { get; set; }
  17. }
  18. }