Skip to content

Instantly share code, notes, and snippets.

@PradeepLoganathan
Last active July 30, 2020 03:53
Show Gist options
  • Select an option

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

Select an option

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