using System.Collections.Generic; namespace HeuristicLab.JsonInterface.OptimizerIntegration { public interface IMatrixJsonItemVM : IJsonItemVM { bool RowsResizable { get; set; } bool ColumnsResizable { get; set; } IEnumerable RowNames { get; set; } IEnumerable ColumnNames { get; set; } } }