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 IColumnFileProperty : ISaveable, ICloneable { /// /// Name of column /// string Name { get; set; } /// /// Name of column for searching /// string SearchingName { get; set; } /// /// Column index /// int Index { get; set; } /// /// Factor for obtaining value from column /// double Factor { get; set; } } }