powerfun-new-net/Model/JsonResult.cs

21 lines
436 B
C#
Raw Normal View History

2020-09-17 10:23:26 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace OnlineUserPool.Model
{
public class JsonResult
{
public bool result { get; set; }
public dynamic data { get; set; }
public string errMsg { get; set; }
}
public class JsonResult<T>
{
public bool result { get; set; }
public T data { get; set; }
public string errMsg { get; set; }
}
}