ERPOption.cs 317 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace NXWMS.Service.ERP
  5. {
  6. public class ERPOption
  7. {
  8. public string BaseUrl { get; set; }
  9. public Newtonsoft.Json.JsonSerializerSettings SerializerSettings { get; } = new Newtonsoft.Json.JsonSerializerSettings();
  10. }
  11. }