Skip to content

Instantly share code, notes, and snippets.

@gmartinezsan
Created April 17, 2018 03:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gmartinezsan/5b64041a6f91097f10bc5ca8fbed8daa to your computer and use it in GitHub Desktop.
Save gmartinezsan/5b64041a6f91097f10bc5ca8fbed8daa to your computer and use it in GitHub Desktop.
using System;
namespace BooksWebApi.Models
{
public class BookWithoutCategoryModel
{
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; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment