Files
win8phoneApp/CampusAppWP8/CampusAppWPortalLib8/Model/IXmlModel.cs
2013-10-15 13:10:29 +02:00

23 lines
798 B
C#

//-----------------------------------------------------------------------
// <copyright file="IXmlModel.cs" company="BTU/IIT">
// The MIT License (MIT). Copyright (c) 2013 BTU/IIT.
// </copyright>
// <author>fiedlchr</author>
// <date>15.10.2013</date>
// <summary>Declares the IXmlModel interface</summary>
//-----------------------------------------------------------------------
namespace CampusAppWPortalLib8.Model
{
/// <summary> Xml model io handler class. </summary>
/// <remarks> fiedlchr, 15.10.2013. </remarks>
public interface IXmlModel
{
#region Property
/// <summary> Gets or sets for the name of the root-tag. </summary>
/// <value> The name of the valid root. </value>
string ValidRootName { get; set; }
#endregion
}
}