12 lines
268 B
C#
12 lines
268 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using StructureHelperCommon.Models.Shapes;
|
|
|
|
namespace StructureHelperCommon.Models.Forces
|
|
{
|
|
public interface IForceCombinationList : IForceAction
|
|
{
|
|
List<IDesignForceTuple> DesignForces { get;}
|
|
}
|
|
}
|