Skip to content

Instantly share code, notes, and snippets.

@PradeepLoganathan
Created July 29, 2020 11:46
Show Gist options
  • Select an option

  • Save PradeepLoganathan/cc31d3c285dbba33d24a4ec405e2e8fa to your computer and use it in GitHub Desktop.

Select an option

Save PradeepLoganathan/cc31d3c285dbba33d24a4ec405e2e8fa to your computer and use it in GitHub Desktop.
catalogue entity for blog post
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