Add beam shear clone strategies

This commit is contained in:
Evgeny Redikultsev
2025-06-01 21:58:06 +05:00
parent 34ad25b2ea
commit 957ab62ece
28 changed files with 343 additions and 167 deletions

View File

@@ -9,14 +9,20 @@ using System.Windows.Media;
namespace StructureHelperLogics.Models.Analyses
{
/// <inheritdoc/>
public class BeamShearAnalysis : IBeamShearAnalysis
{
/// <inheritdoc/>
public Guid Id { get; }
/// <inheritdoc/>
public string Name { get; set; } = string.Empty;
/// <inheritdoc/>
public string Tags { get; set; } = string.Empty;
/// <inheritdoc/>
public string Comment { get; set; } = string.Empty;
/// <inheritdoc/>
public Color Color { get; set; } = Color.FromRgb(128, 0, 0);
/// <inheritdoc/>
public IVersionProcessor VersionProcessor { get; set; } = new VersionProcessor();
public BeamShearAnalysis(Guid id)
{