Book.cs 271 B

12345678910111213
  1. 
  2. namespace BookStore
  3. {
  4. public class Book
  5. {
  6. public int Id { get; set; }
  7. public string Name { get; set; }
  8. public decimal Price { get; set; }
  9. public string Category { get; set; }
  10. public string Author { get; set; }
  11. }
  12. }