Files
aliasvault/apps/server/Utilities/AliasVault.WorkerStatus/Status.cs
2025-09-03 14:59:14 +02:00

35 lines
950 B
C#

// -----------------------------------------------------------------------
// <copyright file="Status.cs" company="aliasvault">
// Copyright (c) aliasvault. All rights reserved.
// Licensed under the AGPLv3 license. See LICENSE.md file in the project root for full license information.
// </copyright>
// -----------------------------------------------------------------------
namespace AliasVault.WorkerStatus;
/// <summary>
/// Enumeration of possible statuses for a worker service.
/// </summary>
public enum Status
{
/// <summary>
/// Indicates that the worker service has started.
/// </summary>
Started,
/// <summary>
/// Indicates that the worker service is starting.
/// </summary>
Starting,
/// <summary>
/// Indicates that the worker service is stopping.
/// </summary>
Stopping,
/// <summary>
/// Indicates that the worker service has stopped.
/// </summary>
Stopped,
}