From 0bcbc7f4721830a1a65fbd2e30fbb69f803884c2 Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Thu, 15 Sep 2022 16:52:16 -0500 Subject: AƱadir base de datos MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Models/Book.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Models/Book.cs (limited to 'Models/Book.cs') diff --git a/Models/Book.cs b/Models/Book.cs new file mode 100644 index 0000000..998a3ee --- /dev/null +++ b/Models/Book.cs @@ -0,0 +1,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; } + } +} \ No newline at end of file -- cgit v1.2.3