Add trace crack result

This commit is contained in:
Evgeny Redikultsev
2024-12-30 15:42:57 +05:00
parent ba70e0d214
commit 65253a907b
42 changed files with 685 additions and 125 deletions

View File

@@ -1,8 +1,15 @@
using System.Collections.Generic;
using StructureHelperCommon.Models.Forces;
//Copyright (c) 2025 Redikultsev Evgeny, Ekaterinburg, Russia
//All rights reserved.
namespace StructureHelperCommon.Infrastructures.Interfaces
{
/// <summary>
/// Interface for entities which has collection of force actions
/// </summary>
public interface IHasForceActions
{
/// <summary>

View File

@@ -2,12 +2,14 @@
namespace StructureHelperCommon.Infrastructures.Interfaces
{
/// <summary>
/// Interface for entities which able to save (has unique identifier)
/// </summary>
public interface ISaveable
{
/// <summary>
/// Unique identifier
/// </summary>
Guid Id { get;}
//void Save();
}
}