mirror of
https://gitee.com/ThingsGateway/ThingsGateway.git
synced 2025-10-23 11:51:09 +08:00
13 lines
235 B
C#
13 lines
235 B
C#
namespace ThingsGateway.Admin.Application;
|
|
|
|
public class GiteeOAuthUser
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string Login { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Avatar_Url { get; set; }
|
|
}
|