using System.Collections.Generic; namespace HeuristicLab.JsonInterface { public interface IMatrixJsonItem : IValueJsonItem { /// /// Flag to define resizable rows. /// bool RowsResizable { get; set; } /// /// Flag to define resizable columns. /// bool ColumnsResizable { get; set; } /// /// IEnumerable of row names. /// IEnumerable RowNames { get; set; } /// /// IEnumerable of column names. /// IEnumerable ColumnNames { get; set; } } }