using System.Reflection; namespace Entities { public class BookEntity { public int ID {get; set;} public string Title { get; set; } public string Author { get; set; } public string Isbn { get; set; } } }