Files
EBoard/电子展板/Models/RetValue.cs

21 lines
517 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using .Utility.Swagger;
namespace .Models
{
[SwaggerClassComment("返回数据")]
public class RetValue
{
[SwaggerComment("返回状态")]
public int state { get; set; }
[SwaggerComment("返回消息")]
public string message { get; set; }
[SwaggerComment("返回数据")]
public object data { get; set; }
}
}