ECGGather/1200gFtp/baseModel.cs

15 lines
277 B
C#
Raw Normal View History

2024-12-25 17:21:40 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace _1200gFtp
{
public class baseModel
{
public bool successed { get; set; }
public string msg { get; set; }
public object data { get; set; }
}
}