Files
StructureHelper/StructureHelperCommon/Infrastructures/Interfaces/IHasForceCombinations.cs
2024-05-05 16:39:02 +05:00

14 lines
333 B
C#

using System.Collections.Generic;
using StructureHelperCommon.Models.Forces;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
public interface IHasForceCombinations
{
/// <summary>
/// Collection of force actions
/// </summary>
List<IForceAction> ForceActions { get; }
}
}