20 lines
840 B
C#
20 lines
840 B
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="AbstractBackgroundTasks.cs" company="BTU/IIT">
|
|
// The MIT License (MIT). Copyright (c) 2013 BTU/IIT.
|
|
// </copyright>
|
|
// <author>Stubbfel</author>
|
|
// <date>15.10.2013</date>
|
|
// <summary>Implements the abstract background tasks class</summary>
|
|
//-----------------------------------------------------------------------
|
|
namespace CampusAppWPortalLib8.Utility
|
|
{
|
|
/// <summary> abstract class for BackGroundTask. </summary>
|
|
/// <remarks> Stubbfel, 15.10.2013. </remarks>
|
|
public abstract class AbstractBackgroundTasks
|
|
{
|
|
/// <summary> Gets or sets the name of the last running task. </summary>
|
|
/// <value> The name of the last added task. </value>
|
|
protected static string LastAddedTaskName { get; set; }
|
|
}
|
|
}
|