using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Runtime.Serialization;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace TProduct.ProcessDrawing.Entities
|
{
|
[DataContract]
|
[Serializable]
|
public class DevicePropItemEntity
|
{
|
[DataMember]
|
public string PropName { get; set; }
|
[DataMember]
|
public string PropValue { get; set; }
|
[DataMember]
|
public string PropTag { get; set; }
|
[DataMember]
|
public string PropDispStyle { get; set; } = "combox";//combox text
|
}
|
}
|