31 lines
719 B
C#
31 lines
719 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Web;
|
|
|
|
namespace DataServer.api
|
|
{
|
|
public class get_abutment
|
|
{
|
|
public List<devs> devs { get; set; }
|
|
public string pKey { get; set; }
|
|
public string sn { get; set; }
|
|
public int ts { get; set; }
|
|
public string ver { get; set; }
|
|
}
|
|
public class devs
|
|
{
|
|
public List<datas> d { get; set; }
|
|
public string dev { get; set; }
|
|
}
|
|
public class datas
|
|
{
|
|
public string m { get; set; }
|
|
public int ts { get; set; }
|
|
public decimal? v { get; set; }
|
|
public int dq { get; set; }
|
|
}
|
|
}
|