27 lines
676 B
C#
27 lines
676 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.Model
|
|
{
|
|
public class ThridLoginRequestDto
|
|
{
|
|
public string secretKey { get; set; }
|
|
public string sign { get; set; }
|
|
public string openUserId { get; set; }
|
|
public string openUsername { get; set; }
|
|
public string openUserProvince { get; set; }
|
|
public string openUserSchool { get; set; }
|
|
public string openNickName { get; set; }
|
|
|
|
public string operType { get; set; }
|
|
|
|
public string isH5 { get; set; }
|
|
|
|
public string redirectUrl { get; set; }
|
|
|
|
}
|
|
}
|