using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Parameters
{
///
/// Rectangle table of parameters
///
///
public interface IArrayParameter
{
///
/// Data of rectangle table
///
T[,] Data { get; }
///
/// Collection of headers of table
///
List ColumnLabels { get; set; }
}
}