oliverbooth.dev/OliverBooth/Data/Web/ProjectStatus.cs

22 lines
484 B
C#
Raw Normal View History

2023-09-24 13:36:36 +00: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.")]
Past,
[Description("The project has been retired with no plans for completion.")]
Retired,
2023-09-24 13:36:36 +00:00
}