Files
StructureHelper/StructureHelperCommon/Infrastructures/Interfaces/IHasForceActions.cs
2024-11-04 17:40:18 +05:00

14 lines
328 B
C#

using System.Collections.Generic;
using StructureHelperCommon.Models.Forces;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
public interface IHasForceActions
{
/// <summary>
/// Collection of force actions
/// </summary>
List<IForceAction> ForceActions { get; }
}
}