24 lines
978 B
C#
24 lines
978 B
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="IPersonFunctionModel.cs" company="BTU/IIT">
|
|
// The MIT License (MIT). Copyright (c) 2013 BTU/IIT.
|
|
// </copyright>
|
|
// <author>Stubbfel</author>
|
|
// <date>15.10.2013</date>
|
|
// <summary>Declares the IPersonFunctionModel interface</summary>
|
|
//-----------------------------------------------------------------------
|
|
namespace CampusAppWPortalLib8.Model.Person
|
|
{
|
|
/// <summary> Interface for PersonFunctionModel classes. </summary>
|
|
/// <remarks> Stubbfel, 15.10.2013. </remarks>
|
|
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; }
|
|
}
|
|
}
|