mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-19 16:06:36 +08:00
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; }
|
|||
|
|
}
|
|||
|
|
}
|