13 lines
320 B
C#
13 lines
320 B
C#
namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Account
|
|
{
|
|
public class LoginInputVo
|
|
{
|
|
public string UserName { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
public string? Uuid { get; set; }
|
|
|
|
public string? Code { get; set; }
|
|
}
|
|
}
|