using System.Collections.Generic; namespace stonevox { public class GUIData { public List widgets { get; set; } public GUIData() { widgets = new List(); } } }