using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace HDLMonitorService.Entity
|
{
|
public class ApiBaseResponse
|
{
|
public string StateCode { get; set; }
|
|
public string ErrorInfo { get; set; }
|
|
public object ResponseData { get; set; }
|
|
public string ResponseVersion { get; set; }
|
|
}
|
}
|