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