Geometry property results have been added
This commit is contained in:
18
StructureHelperCommon/Models/Parameters/ITextParameter.cs
Normal file
18
StructureHelperCommon/Models/Parameters/ITextParameter.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperCommon.Models.Parameters
|
||||
{
|
||||
public interface ITextParameter
|
||||
{
|
||||
bool IsValid { get; set; }
|
||||
string Name { get; set; }
|
||||
string ShortName { get; set; }
|
||||
string MeasurementUnit { get; set; }
|
||||
double Value { get; set; }
|
||||
string Description { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user