Files
MsAddIns/MSDevTool/Models/PropValueBase.cs

12 lines
271 B
C#
Raw Normal View History

2026-02-28 21:01:57 +08:00
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; }
}
}