using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HomeLibrary.Models.Dtos { public class CompleteBookDto { public int BookId { get; set; } public int AuthorId { get; set; } public string AuthorName { get; set; } public string Title { get; set; } public string Series { get; set; } public int BookNumber { get; set; } } }