You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
570 B
C#
28 lines
570 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Aucma.Scada.UI.Page.Model
|
|
{
|
|
/**
|
|
* 登录返回结果
|
|
* */
|
|
public class Result
|
|
{
|
|
/// <summary>
|
|
/// 返回结果
|
|
/// </summary>
|
|
public string msg { get; set; }
|
|
/// <summary>
|
|
/// 返回状态
|
|
/// </summary>
|
|
public int code { get; set; }
|
|
/// <summary>
|
|
/// 返回令牌
|
|
/// </summary>
|
|
public string token { get; set; }
|
|
}
|
|
}
|