using System.ComponentModel; namespace OliverBooth.Data.Web; /// /// Represents the status of a project. /// 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 }