Files
StructureHelper/StructureHelperCommon/Infrastructures/Interfaces/IHasForceCombinations.cs
2023-02-12 23:38:24 +05:00

11 lines
266 B
C#

using System.Collections.Generic;
using StructureHelperCommon.Models.Forces;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
public interface IHasForceCombinations
{
List<IForceCombinationList> ForceCombinationLists { get; }
}
}