Files
StructureHelper/StructureHelperCommon/Models/Forces/IForceCombinationFromFile.cs
2024-11-16 22:34:34 +05:00

14 lines
304 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Forces
{
internal interface IForceCombinationFromFile : IForceAction
{
List<IForceFileProperty> ForceFiles { get; set; }
}
}