tijian_tieying/web/dccdc/Models/OAuthopenid.cs

18 lines
389 B
C#
Raw Normal View History

2025-02-20 12:14:39 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace dccdc.Models
{
public class OAuthopenid
{
public string access_token { get; set; }
public string expires_in { get; set; }
public string openid { get; set; }
public string refresh_token { get; set; }
public string scope { get; set; }
}
}