namespace OliverBooth.Data.Web; /// /// Represents a book. /// internal sealed class Book : IBook { /// public string Author { get; } /// public string Isbn { get; } /// public BookState State { get; } /// public string Title { get; } }