HDL Home App 第二版本 旧平台金堂用 正在使用
lss
2022-04-26 5777c367f53c758546211d5f7f40a27f0b11c660
ZigbeeApp/Shared/Common/ResponseEntity/AuthUserRes.cs
New file
@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
namespace Shared.Common.ResponseEntity
{
    [Serializable]
    public class AuthUserRes
    {
        ///<summary>
        /// 第三方token
        /// </summary>
        public string access_token;
        /// <summary>
        /// 刷新token
        /// </summary>
        public string refresh_token;
        /// <summary>
        ///第三方用户唯一标识
        /// </summary>
        public string openid;
        public int expires_in;
        public string scope;
        public string unionid;
    }
}