2023-09-24 14:36:36 +01:00
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
namespace OliverBooth.Data.Web;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Represents the status of a project.
|
|
|
|
/// </summary>
|
|
|
|
public enum ProjectStatus
|
|
|
|
{
|
|
|
|
[Description("The project is currently being worked on.")]
|
|
|
|
Ongoing,
|
|
|
|
|
|
|
|
[Description("The project is on an indefinite hiatus.")]
|
|
|
|
Hiatus,
|
|
|
|
|
|
|
|
[Description("The project is no longer being worked on.")]
|
2023-12-26 20:35:21 +00:00
|
|
|
Past,
|
|
|
|
|
|
|
|
[Description("The project has been retired with no plans for completion.")]
|
|
|
|
Retired,
|
2023-09-24 14:36:36 +01:00
|
|
|
}
|