DockTool/baseMsgModel.cs
2024-12-12 14:09:48 +08:00

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; }
}
}