13 lines
299 B
C#
13 lines
299 B
C#
namespace Szmedi.RvKits.FamilyTools
|
|
{
|
|
public class JsonPara
|
|
{
|
|
public string Value { get; set; }
|
|
public string Formula { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return "参数值:" + Value + "---公式:" + Formula;
|
|
}
|
|
}
|
|
} |