Created
July 29, 2020 11:46
-
-
Save PradeepLoganathan/cc31d3c285dbba33d24a4ec405e2e8fa to your computer and use it in GitHub Desktop.
catalogue entity for blog post
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
| using System.Collections.Generic; | |
| using BookStore.Domain.BooksAggregate; | |
| namespace BookStore.Domain.CatalogueAggregate | |
| { | |
| public class Catalogue | |
| { | |
| public int CatalogueId { get; set; } | |
| public string Name { get; set; } | |
| public List<Book> Books { get; set; } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment