23 lines
645 B
C#
23 lines
645 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.NET.Application.Service
|
|
{
|
|
public class CasdoorUserInfoDto
|
|
{
|
|
public string address { get; set; }
|
|
public string aud { get; set; }
|
|
public string email { get; set; }
|
|
public string[] groups { get; set; }
|
|
public string iss { get; set; }
|
|
public string name { get; set; }
|
|
public string phone { get; set; }
|
|
public string picture { get; set; }
|
|
public string preferred_username { get; set; }
|
|
public string sub { get; set; }
|
|
}
|
|
}
|