Book.cs 268 B

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