using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperCommon.Models.Forces { /// /// Supports list of files which provides import of combination of forces /// public interface IForceCombinationFromFile : IForceFactoredCombination { /// /// List of file properties for import combination /// List ForceFiles { get; set; } } }