Geometry property results have been added

This commit is contained in:
Evgeny Redikultsev
2023-04-29 20:39:05 +05:00
parent fe2adb49ff
commit 749c864edd
35 changed files with 550 additions and 73 deletions

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

View 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 class TextParameter : ITextParameter
{
public bool IsValid { get; set; }
public string Name { get; set; }
public string ShortName { get; set; }
public string MeasurementUnit { get; set; }
public double Value { get; set; }
public string Description { get; set; }
}
}