using System.Collections.Generic; using StructureHelperCommon.Models.Forces; //Copyright (c) 2025 Redikultsev Evgeny, Ekaterinburg, Russia //All rights reserved. namespace StructureHelperCommon.Infrastructures.Interfaces { /// /// Interface for entities which has collection of force actions /// public interface IHasForceActions { /// /// Collection of force actions /// List ForceActions { get; } } }