15 lines
279 B
C#
15 lines
279 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace FlyDockTool
|
|
{
|
|
public class baseMsgModel
|
|
{
|
|
public string msg { get; set; }//
|
|
public int code { get; set; }
|
|
public object data { get; set; }
|
|
}
|
|
}
|