You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
523 B
C#
20 lines
523 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace XGL.Models.Model
|
|
{
|
|
public class BaseEquipmentAttached
|
|
{
|
|
public string id { get; set; }
|
|
public string device_type { get; set; }
|
|
public string device_code { get; set; }
|
|
public string property { get; set; }
|
|
public string explain { get; set; }
|
|
public string isvalue { get; set; }
|
|
public string last_update_time { get; set; }
|
|
}
|
|
}
|