25 lines
823 B
C#
25 lines
823 B
C#
//-----------------------------------------------------------------------------
|
|
// <copyright file="PersonListModel.cs" company="BTU/IIT">
|
|
// Company copyright tag.
|
|
// </copyright>
|
|
// <author>stubbfel</author>
|
|
// <sience>05.09.2013</sience>
|
|
//-----------------------------------------------------------------------------
|
|
|
|
namespace CampusAppWP8.Model.Person
|
|
{
|
|
using System.Collections.ObjectModel;
|
|
using System.Xml.Serialization;
|
|
|
|
/// <summary>Person list model.</summary>
|
|
/// <remarks>Stubbfel, 05.09.2013.</remarks>
|
|
[XmlRoot("Uebersicht")]
|
|
public class PersonListModel
|
|
{
|
|
/// <summary>Gets or sets the persons.</summary>
|
|
/// <value>The persons.</value>
|
|
[XmlElement("person")]
|
|
public ObservableCollection<PersonFunctionModel> Persons { get; set; }
|
|
}
|
|
}
|