Files
MsAddIns/MSDevTool/Models/PropValueBase.cs
2026-02-28 21:01:57 +08:00

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; }
}
}