mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-25 02:46:39 +08:00
7 lines
182 B
C#
7 lines
182 B
C#
|
|
namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Account;
|
|||
|
|
|
|||
|
|
public class LoginOutputDto
|
|||
|
|
{
|
|||
|
|
public string Token { get; set; }
|
|||
|
|
public string RefreshToken { get; set; }
|
|||
|
|
}
|