38 lines
		
	
	
		
			700 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			700 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace APT.OP.WebApi.Models
 | 
						|
{
 | 
						|
    public class WxAccessToken
 | 
						|
    {
 | 
						|
        public string access_token { get; set; }
 | 
						|
 | 
						|
        public int expires_in { get; set; }
 | 
						|
 | 
						|
        public int errcode { get; set; }
 | 
						|
 | 
						|
        public string errmsg { get; set; }
 | 
						|
    }
 | 
						|
 | 
						|
    public class WxTicket
 | 
						|
    {
 | 
						|
        public string ticket { get; set; }
 | 
						|
 | 
						|
        public int expires_in { get; set; }
 | 
						|
 | 
						|
        public int errcode { get; set; }
 | 
						|
 | 
						|
        public string errmsg { get; set; }
 | 
						|
    }
 | 
						|
    public class WxSignModel
 | 
						|
    {
 | 
						|
        public string appId { get; set; }
 | 
						|
 | 
						|
        public string timestamp { get; set; }
 | 
						|
 | 
						|
        public string nonceStr { get; set; }
 | 
						|
 | 
						|
        public string signature { get; set; }
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
}
 |