LonglslandExhibitionCenter/DataService/api/get_maintenance_reminder.cs

21 lines
491 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataService.api
{
public class get_maintenance_reminder
{
public int code { get; set; }
public string msg { get; set; }
public List<maintenance_reminderData> data { get; set; }
}
public class maintenance_reminderData
{
public string DeviceName { get; set; }
public string Status { get; set; }
}
}