- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Api.Common.Options
- {
- public class WXOptions
- {
- public string Token { get; set; }
- public string AppId { get; set; }
- public string Secret { get; set; }
- public string Code2Session { get; set; }
- }
- }
|