summaryrefslogtreecommitdiff
path: root/Models/Book.cs
blob: 998a3ee8eefc16123203a79c32c6cf476b89afb2 (plain)
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; }
    }
}