//-----------------------------------------------------------------------------
//
// Company copyright tag.
//
// fiedlchr
// 05.07.2013
//-----------------------------------------------------------------------------
namespace CampusAppWPortalLib8.Model
{
using CampusAppWPortalLib8.Utility;
///
/// Xml model io handler class.
///
/// model type
public interface IXmlModel
{
#region Property
///
/// Gets or sets for the name of the root-tag
///
string ValidRootName { get; set; }
#endregion
}
}