IXmlSavable.cs 274 B

123456789101112
  1. using System.Collections.Generic;
  2. using System.Xml.Linq;
  3. namespace MuchInfo.Chart.WPF.Primitives.Interfaces
  4. {
  5. public interface IXmlSavable
  6. {
  7. XElement ToXml(List<object> args);
  8. void FromXml(XElement node);
  9. string RootName { get; }
  10. }
  11. }