10 lines
250 B
C#
10 lines
250 B
C#
|
|
namespace Szmedi.RvKits.FamilyTools
|
|||
|
|
{
|
|||
|
|
public class ParaModel
|
|||
|
|
{
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
public string Value { get; set; }
|
|||
|
|
public string Formula { get; set; }
|
|||
|
|
public string Group { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|