E_ElecCompetition/Electrical_inspectionCompet.../Assets/Adam/Scripts/Data/LoginData.cs

26 lines
507 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//============================================================
//支持中文文件使用UTF-8编码
//@author #AUTHOR#
//@create #CREATEDATE#
//@company #COMPANY#
//
//@description:
//============================================================
using System;
namespace Login
{
[Serializable]
public class LoginData
{
public string code;
public string state;
public Data[] data;
}
[Serializable]
public class Data
{
public string msg;
}
}