namespace BookStore { public class Book { public int Id { get; set; } public string Name { get; set; } public decimal Price { get; set; } public string Category { get; set; } public string Author { get; set; } } }