24 lines
591 B
C#
24 lines
591 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CommonEntity
|
|
{
|
|
public class LoginData
|
|
{
|
|
public string username { get; set; }
|
|
public string password { get; set; }
|
|
}
|
|
public class ResLoginData
|
|
{
|
|
public string AccessToken { get; set; }
|
|
public int Id { get; set; }
|
|
public string? Permission { get; set; }
|
|
public string? UserName { get; set; }
|
|
public string? RealName { get; set; }
|
|
public string? CompanyName { get; set; }
|
|
}
|
|
}
|