Oliver Booth
486b53d9d7
also changes the colours for Hiatus from red to orange, red now signifying Retired
22 lines
484 B
C#
22 lines
484 B
C#
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.")]
|
|
Past,
|
|
|
|
[Description("The project has been retired with no plans for completion.")]
|
|
Retired,
|
|
}
|