23 lines
604 B
C#
23 lines
604 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace DI_Electrical.Model
|
|||
|
{
|
|||
|
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; }
|
|||
|
}
|
|||
|
}
|