chore: initial commit
This commit is contained in:
29
Interface_WebAPI/SlMesDbIterface/MOM/ApiResponse.cs
Normal file
29
Interface_WebAPI/SlMesDbIterface/MOM/ApiResponse.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
namespace MisDataSaveDate.MOM
|
||||
{
|
||||
public class ApiResponse
|
||||
{
|
||||
[JsonProperty("code")]
|
||||
public int Code { get; set; }
|
||||
|
||||
[JsonProperty("message")]
|
||||
public string Message { get; set; }
|
||||
|
||||
[JsonProperty("data")]
|
||||
public List<Response_Data> Data { get; set; }
|
||||
}
|
||||
|
||||
public class Response_Data
|
||||
{
|
||||
[JsonProperty("code")]
|
||||
public int Code { get; set; }
|
||||
|
||||
[JsonProperty("message")]
|
||||
public string Message { get; set; }
|
||||
|
||||
[JsonProperty("dataid")]
|
||||
public string DataId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user