using System; using System.Collections.Generic; public interface IXMLNode { string value { get; set; } XMLNodeType type { get; } IXMLNode Parent { get; } List Children { get; set; } List Attributes { get; set; } }