10 lines
283 B
C#
10 lines
283 B
C#
namespace YY.Admin.Services;
|
|
public class LoginInput
|
|
{
|
|
public string Username { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
public long TenantId { get; set; }
|
|
public bool RememberMe { get; set; }
|
|
}
|
|
|