Value points were added
This commit is contained in:
@@ -6,9 +6,19 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperCommon.Models.Parameters
|
||||
{
|
||||
/// <summary>
|
||||
/// Rectangle table of parameters
|
||||
/// </summary>
|
||||
/// <typeparam name="T"></typeparam>
|
||||
public interface IArrayParameter<T>
|
||||
{
|
||||
/// <summary>
|
||||
/// Data of rectangle table
|
||||
/// </summary>
|
||||
T[,] Data { get; }
|
||||
string[] ColumnLabels { get; set; }
|
||||
/// <summary>
|
||||
/// Collection of headers of table
|
||||
/// </summary>
|
||||
List<string> ColumnLabels { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user