24 lines
858 B
C#
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; }
|
|
}
|
|
}
|