using Volo.Abp.Application.Dtos; namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Account { public class AuthOutputDto:EntityDto { 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; } } }