Files
win8phoneApp/CampusAppWP8/CampusAppWPortalLib8/Model/Person/IPersonFunctionModel.cs
2013-10-01 16:34:03 +02:00

24 lines
858 B
C#

//-----------------------------------------------------------------------------
// <copyright file="IPersonFunctionModel.cs" company="BTU/IIT">
// Company copyright tag.
// </copyright>
// <author>stubbfel</author>
// <sience>01.10.2013</sience>
//-----------------------------------------------------------------------------
namespace CampusAppWPortalLib8.Model.Person
{
/// <summary>
/// Interface for PersonFunctionModel classes
/// </summary>
public interface IPersonFunctionModel
{
/// <summary>Gets or sets the identifier of the person.</summary>
/// <value>The identifier of the person.</value>
string PersonID { get; set; }
/// <summary>Gets or sets zero-based index of the function.</summary>
/// <value>The function index.</value>
int FunctionIndex { get; set; }
}
}