using System.Collections.Generic; namespace AIMA.Agent.Table { public interface IRow where ValueType:struct { Dictionary Columns { get; init; } public Dictionary Cells() { return Columns; } } }