2024-03-02 00:43:56 +00:00
|
|
|
namespace OliverBooth.Common.Data.Web.Books;
|
2023-12-14 16:03:24 +00:00
|
|
|
|
|
|
|
/// <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
|
|
|
|
}
|