23 lines
608 B
C#
23 lines
608 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SWS.CAD.Models.NoEntity
|
|
{
|
|
public class loginRes
|
|
{
|
|
public string token { get; set; }
|
|
public string loginMark { get; set; }
|
|
public string account { get; set; }
|
|
public string userId { get; set; }
|
|
public string RealName { get; set; }
|
|
|
|
public string userPs { get; set; }
|
|
public string IsIOModuleAdmin { get; set; }
|
|
public string isFirstLogin { get; set; }
|
|
public string Department { get; set; }
|
|
}
|
|
}
|