using System; using System.Collections.Generic; namespace Caliburn.StateManagement { [Serializable] public class StateContainer : StateEntry { private List _children = new List(); private Type _type; public Type Type { get { return _type; } set { _type = value; } } public List Children { get { return _children; } set { _children = value; } } } }