Skip to content

Instantly share code, notes, and snippets.

@gmartinezsan
Created January 31, 2018 05:16
Show Gist options
  • Save gmartinezsan/5a1fb3629f73d3f3b1ac21da884e68ba to your computer and use it in GitHub Desktop.
Save gmartinezsan/5a1fb3629f73d3f3b1ac21da884e68ba to your computer and use it in GitHub Desktop.
namespace BooksWebApi.Entities
{
public class Category
{
public long Id { get; set; }
public string Description { 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