using System; namespace MSDevTool.Models { public class PropValueBase { public string LabelName { get; set; } public string PropName { get; set; } public object PropValue { get; set; } public Type DataType { get; set; } } }