11 lines
266 B
C#
11 lines
266 B
C#
using System.Collections.Generic;
|
|
using StructureHelperCommon.Models.Forces;
|
|
|
|
namespace StructureHelperCommon.Infrastructures.Interfaces
|
|
{
|
|
public interface IHasForceCombinations
|
|
{
|
|
List<IForceCombinationList> ForceCombinationLists { get; }
|
|
}
|
|
}
|