using System;
using System.Collections.Generic;
using System.Text;

namespace CZKJ.GBRS2.Model
{
   public  class AccessTokenModel
    {
        public string access_token { get; set; }

        public string expires_in { get; set; }

        public string user_id { get; set; }
    }
}