WxAccount.cs 232 Bytes
using System;
using System.Collections.Generic;
using System.Text;

namespace Quiz.Models
{
    public class WxAccount
    {
        public string JsapiTicket { get; set; }
        public string AccessToken { get; set; }
    }
}