17 lines
463 B
C#
17 lines
463 B
C#
using StructureHelperCommon.Models.Parameters;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Analyses.Geometry
|
|
{
|
|
public class GeometryResult : IGeometryResult
|
|
{
|
|
public bool IsValid { get; set; }
|
|
public List<IValueParameter<string>> TextParameters { get; set; }
|
|
public string Description { get; set; }
|
|
}
|
|
}
|