123456789101112131415161718192021 |
- using MongoDB.Bson;
- using MongoDB.Bson.Serialization.Attributes;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Bookstore
- {
- public class Book
- {
- [BsonId]
- [BsonRepresentation(BsonType.ObjectId)]
- public string Id { get; set; }
- public string Name { get; set; }
- public decimal Price { get; set; }
- public string Category { get; set; }
- public string Author { get; set; }
- }
- }
|