WXOptions.cs 366 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace Ropin.Inspection.Api.Common.Options
  6. {
  7. public class WXOptions
  8. {
  9. public string Token { get; set; }
  10. public string AppId { get; set; }
  11. public string Secret { get; set; }
  12. public string Code2Session { get; set; }
  13. }
  14. }