oliverbooth.dev/OliverBooth.Common/Data/Web/BookState.cs
Oliver Booth 6ec4103a3a
refactor: separate Markdig extensions from project
Also introduces .Common project to house common references and types
2024-05-05 02:18:20 +01:00

22 lines
437 B
C#

namespace OliverBooth.Common.Data.Web;
/// <summary>
/// Represents the state of a book.
/// </summary>
public enum BookState
{
/// <summary>
/// The book has been read and finished.
/// </summary>
Read,
/// <summary>
/// The book is on the current reading list.
/// </summary>
Reading,
/// <summary>
/// The book is on a future reading list.
/// </summary>
PlanToRead
}