22 lines
676 B
C#
22 lines
676 B
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="AbstractBackgroundTasks.cs" company="BTU/IIT">
|
|
// Company copyright tag.
|
|
// </copyright>
|
|
// <author>stubbfel</author>
|
|
// <sience>18.09.2013</sience>
|
|
//----------------------------------------------------------------------
|
|
|
|
namespace CampusAppWPortalLib8.Utility
|
|
{
|
|
/// <summary>
|
|
/// abstract class for BackGroundTask
|
|
/// </summary>
|
|
public abstract class AbstractBackgroundTasks
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the name of the last running task
|
|
/// </summary>
|
|
protected static string LastAddedTaskName { get; set; }
|
|
}
|
|
}
|