27 lines
762 B
C#
27 lines
762 B
C#
//-----------------------------------------------------------------------------
|
|
// <copyright file="IXmlModel.cs" company="BTU/IIT">
|
|
// Company copyright tag.
|
|
// </copyright>
|
|
// <author>fiedlchr</author>
|
|
// <sience>05.07.2013</sience>
|
|
//-----------------------------------------------------------------------------
|
|
namespace CampusAppWPortalLib8.Model
|
|
{
|
|
using CampusAppWPortalLib8.Utility;
|
|
|
|
/// <summary>
|
|
/// Xml model io handler class.
|
|
/// </summary>
|
|
/// <typeparam name="T">model type</typeparam>
|
|
public interface IXmlModel
|
|
{
|
|
#region Property
|
|
|
|
/// <summary>
|
|
/// Gets or sets for the name of the root-tag
|
|
/// </summary>
|
|
string ValidRootName { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
} |