Skip to content

Instantly share code, notes, and snippets.

@emrekizildas
Created March 19, 2019 13:15
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 emrekizildas/2ab73f5bbe8ac762903b038c58751c56 to your computer and use it in GitHub Desktop.
Save emrekizildas/2ab73f5bbe8ac762903b038c58751c56 to your computer and use it in GitHub Desktop.
using System;
namespace CoreAPI.DTOs
{
public class BookInfoDto
{
public int BookID { get; set; }
public string Name { get; set; }
public string AuthorName { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment