12 lines
271 B
C#
12 lines
271 B
C#
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; }
|
|
}
|
|
} |