blob: 51d7d08982963cba30d827c32c08a70ac2dbf1ed [file] [log] [blame]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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;
}
}
}