Files
Kg.SeaTime/Service/Application.Web/Model/RequestParms/Login/LoginParms.cs
Putoo 4463f9e810 111
2026-04-26 18:53:56 +08:00

29 lines
610 B
C#

using Swashbuckle.AspNetCore.Annotations;
using System;
using System.Collections.Generic;
using System.Text;
namespace Application.Web
{
/// <summary>
/// 登录请求参数
/// </summary>
public class LoginParms
{
/// <summary>
/// 登录名/手机号
/// </summary>
public string name { get; set; } = string.Empty;
/// <summary>
/// 密码
/// </summary>
public string pwd { get; set; }= string.Empty;
/// <summary>
/// 验证码
/// </summary>
public string code { get; set; }
}
}