using StructureHelperCommon.Infrastructures.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Forces
{
///
/// Settingth for column reading from MSExcel file
///
public interface IForceColumnProperty : ISaveable
{
///
/// Name of column for searching
///
string ColumnName { get; set; }
///
/// Column index
///
int ColumnIndex { get; set; }
///
/// Factor for obtaining value from column
///
double ColumnFactor { get; set; }
}
}