Files
Yi.Admin/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Account/LoginInputVo.cs

13 lines
320 B
C#
Raw Normal View History

2023-12-11 09:55:12 +08:00
namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Account
2023-04-13 21:12:06 +08:00
{
public class LoginInputVo
{
public string UserName { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
2024-01-22 18:30:01 +08:00
public string? Uuid { get; set; }
2023-04-13 21:12:06 +08:00
2024-01-22 18:30:01 +08:00
public string? Code { get; set; }
2023-04-13 21:12:06 +08:00
}
}