Files
StructureHelper/StructureHelperCommon/Infrastructures/Interfaces/IHasForceCombinations.cs
2023-03-19 17:38:01 +05:00

11 lines
248 B
C#

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