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