blob: 43112b7e57b9673e6c1f485c26a0fb0d70d171ac [file] [log] [blame]
namespace OfficeOpenXml.FormulaParsing;
public class ParsedValue {
public ParsedValue(object val, int rowIndex, int colIndex) {
Value = val;
RowIndex = rowIndex;
ColIndex = colIndex;
}
public object Value { get; private set; }
public int RowIndex { get; private set; }
public int ColIndex { get; private set; }
}