summaryrefslogtreecommitdiff
path: root/Models/Book.cs
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2022-09-15 20:55:44 -0500
committerHombreLaser <sebastian-440@live.com>2022-09-15 20:55:44 -0500
commit2c9c2cc3b414115bca9b6c63ca7b20d49a8a8ec1 (patch)
tree0344372eca04eab992ece36c4e07511f6f0214c6 /Models/Book.cs
parent3381c633fcd73e5159ae4a607835167ebdbb12ee (diff)
Agregar autor
Diffstat (limited to 'Models/Book.cs')
-rw-r--r--Models/Book.cs13
1 files changed, 5 insertions, 8 deletions
diff --git a/Models/Book.cs b/Models/Book.cs
index bcf9ef7..29faa97 100644
--- a/Models/Book.cs
+++ b/Models/Book.cs
@@ -1,15 +1,12 @@
-using System.ComponentModel.DataAnnotations.Schema;
-using System.ComponentModel.DataAnnotations;
-
namespace LibraryAPI.Models {
public class Book {
- [Key]
- [DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long Id { get; set; }
+ public long AuthorId { get; set; }
+ public Author? Author { get; set; }
public int PublicationYear { get; set; }
- public string[] Genres { get; set; }
+ public string[]? Genres { get; set; }
public int Edition { get; set; }
- public string ISBN { get; set; }
- public string Title { get; set; }
+ public string? ISBN { get; set; }
+ public string? Title { get; set; }
}
} \ No newline at end of file