18 lines
388 B
C#
18 lines
388 B
C#
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Account
|
|
{
|
|
public class AuthOutputDto:EntityDto<Guid>
|
|
{
|
|
public Guid UserId { get; set; }
|
|
|
|
public string OpenId { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string AuthType { get; set; }
|
|
|
|
public DateTime CreationTime { get; set; }
|
|
}
|
|
}
|