Last active
July 30, 2020 03:53
-
-
Save PradeepLoganathan/ebf98130de9174a58cdf51b67fbea234 to your computer and use it in GitHub Desktop.
Book entity for blog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace BookStore.Domain.BooksAggregate | |
| { | |
| public class Book | |
| { | |
| public int Id { get; set; } | |
| public string Title { get; set; } | |
| public string Author { get; set; } | |
| public string Publisher { get; set; } | |
| public string Genre { get; set; } | |
| public int Price { get; set; } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment