23 lines
651 B
C#
23 lines
651 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace LadfDataApp
|
|
{
|
|
public class DeviceModel
|
|
{
|
|
public string deviceId { get; set; }
|
|
public string brand { get; set; }
|
|
public string model { get; set; }
|
|
public string typeId { get; set; }
|
|
public string projectId { get; set; }
|
|
public string power { get; set; }
|
|
public string regionId { get; set; }
|
|
public string produceTime { get; set; }
|
|
public string deviceTypeId { get; set; }
|
|
public string deviceTypeName { get; set; }
|
|
public string name { get; set; }
|
|
}
|
|
}
|