jy-plc/Command/Model/RequestModel/RequestLogin.cs

23 lines
455 B
C#
Raw Normal View History

2024-07-24 13:30:21 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace LangGuan.Command.Model.RequestModel
{
/// <summary>
/// 登陆
/// </summary>
public class RequestLogin
{
/// <summary>
/// Account
/// </summary>
public string Account { get; set; }
/// <summary>
/// Pwd
/// </summary>
public string Pwd { get; set; }
}
}