using StructureHelperCommon.Infrastructures.Enums;
using StructureHelperCommon.Infrastructures.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Forces
{
///
/// Settings for extracting force combination from MSExcel file
///
public interface IColumnedFileProperty : IFileProperty
{
///
/// Count of rows before header
///
int SkipRowBeforeHeaderCount { get; set; }
///
/// Count of rows of header
///
int SkipRowHeaderCount { get; set; }
///
/// Factor which imported value multyply to
///
double GlobalFactor { get; set; }
///
/// Collection of column's properties which will be imported
///
List ColumnProperties { get; }
}
}