1 2 3 4 5 6 7 8 9 10
namespace LibraryAPI.Models { public class Book { public long Id { get; set; } public DateTime PublicationDate { get; set; } public string[] Genres { get; set; } public int Edition { get; set; } public string ISBN { get; set; } } }