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.

28 lines
568 B
C#

namespace ZJ_BYD.ViewModel
{
public class XmlPointVM
{
public string PointCode { get; set; }
public string Address { get; set; }
public string PointName { get; set; }
public string DataType { get; set; }
public string Length { get; set; }
public bool IsSystem { get; set; }
public bool IsSaveDb { get; set; }
public bool IsRealTime { get; set; }
public bool IsActive { get; set; }
public int SortIndex { get; set; }
public string Remark { get; set; }
}
}