//----------------------------------------------------------------------- // // The MIT License (MIT). Copyright (c) 2013 BTU/IIT. // // fiedlchr // 15.10.2013 // Declares the IXmlModel interface //----------------------------------------------------------------------- namespace CampusAppWPortalLib8.Model { /// Xml model io handler class. /// fiedlchr, 15.10.2013. public interface IXmlModel { #region Property /// Gets or sets for the name of the root-tag. /// The name of the valid root. string ValidRootName { get; set; } #endregion } }