AppSetting.cs 393 B

12345678910111213141516
  1. using Newtonsoft.Json;
  2. using Newtonsoft.Json.Serialization;
  3. namespace Host.Common
  4. {
  5. public class AppSetting
  6. {
  7. /// <summary>
  8. /// 小驼峰命名
  9. /// </summary>
  10. public static JsonSerializerSettings SerializerSettings = new JsonSerializerSettings
  11. {
  12. ContractResolver = new CamelCasePropertyNamesContractResolver()
  13. };
  14. }
  15. }