Files
StructureHelper/StructureHelperCommon/Models/Forces/IForceCombinationFromFile.cs
2025-01-18 22:13:11 +05:00

20 lines
537 B
C#

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