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