25 lines
542 B
C#
25 lines
542 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace XiaoZhiSharp.Models
|
|
{
|
|
public class UserEty
|
|
{
|
|
public string TenantName { get; set; }
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
}
|
|
|
|
public class LoginModel : UserEty
|
|
{
|
|
/// <summary>
|
|
/// 登录请求地址
|
|
/// </summary>
|
|
public string Url { get; set; }
|
|
public string RememberMe { get; set; }
|
|
}
|
|
}
|