using OliverBooth.Data.Web; namespace OliverBooth.Services; /// /// Represents a service which fetches books from the reading list. /// public interface IReadingListService { /// /// Gets the books in the reading list with the specified state. /// /// The state. /// A collection of books in the specified state. IReadOnlyCollection GetBooks(BookState state); }