namespace HomeLibrary.Api.Entities
{
public class Book
public int Id { get; set; }
public int AuthorId { get; set; }
public string Title { get; set; }
public string Series { get; set; }
public int BookNumber { get; set; }
}