22 lines
513 B
C#
22 lines
513 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataServer.api
|
|
{
|
|
public class get_equipment_profile
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<equipment_profileData> data { get; set; }
|
|
}
|
|
public class equipment_profileData
|
|
{
|
|
public string DeviceName { get; set; }
|
|
public decimal? ServiceRating { get; set; }
|
|
}
|
|
}
|