Skip to content

Instantly share code, notes, and snippets.

@gmartinezsan
Created January 31, 2018 04:45
Show Gist options
  • Save gmartinezsan/8867a4c80c1453f86a10dd6c09468b63 to your computer and use it in GitHub Desktop.
Save gmartinezsan/8867a4c80c1453f86a10dd6c09468b63 to your computer and use it in GitHub Desktop.
namespace BooksWebApi.Entities
{
public class Book
{
public long Id { get; set; }
public string Name { get; set; }
public string AuthorName { get; set; }
public int Edition { get; set; }
public DateTime PublicationDate { get; set; }
public string ISDN { get; set; }
public Category Category { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment