summaryrefslogtreecommitdiff
path: root/Models/Author.cs
blob: 9f04a58b4bb17063f1290a92804e66f248d731d5 (plain)
1
2
3
4
5
6
7
8
9
10
namespace LibraryAPI.Models {
    public class Author {
        public long Id { get; set; }
        public List<Book>? Books { get; set; }
        public string? Country { get; set; }
        public string? Name { get; set; }
        public int YearOfBirth { get; set; }
        public string[]? languages { get; set; }
    }
}