Files
StructureHelper/StructureHelperCommon/Infrastructures/Interfaces/IHasForceActions.cs
Evgeny Redikultsev 65253a907b Add trace crack result
2024-12-30 15:42:57 +05:00

21 lines
521 B
C#

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>
/// Collection of force actions
/// </summary>
List<IForceAction> ForceActions { get; }
}
}