using System.Collections.Generic; using System.Xml.Linq; namespace MuchInfo.Chart.WPF.Primitives.Interfaces { public interface IXmlSavable { XElement ToXml(List<object> args); void FromXml(XElement node); string RootName { get; } } }