Skip to content

Instantly share code, notes, and snippets.

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