using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 用户登录 /// public class UserLoginInput { /// /// 软件类型 /// public string SoftType { get; set; } /// /// 软件标签 /// public string SoftTag { get; set; } /// /// 登录名称 /// public string LoginName { get; set; } /// /// 登录密码 /// public string LoginPwd { get; set; } } }