using MongoDB.Bson.Serialization.Attributes; namespace candy_shop_ai.Model { public class Candy { [BsonId] public string Id { get; set; }=new Guid().ToString(); public string Name { get; set; }= string.Empty; public string Description { get; set; }= string.Empty; public string Taste { get; set; }= string.Empty; public float Price { get; set; } public double[]? Embeddings { get; set; } } }