//----------------------------------------------------------------------------- // // Company copyright tag. // // stubbfel // 01.10.2013 //----------------------------------------------------------------------------- namespace CampusAppWPortalLib8.Model.Person { /// /// Interface for PersonFunctionModel classes /// public interface IPersonFunctionModel { /// Gets or sets the identifier of the person. /// The identifier of the person. string PersonID { get; set; } /// Gets or sets zero-based index of the function. /// The function index. int FunctionIndex { get; set; } } }