namespace MyDarling.Models { public class UnderwearBundle { public int Id { get; set; } public string Name { get; set; } = "My Darling Bundle"; public List
Figures { get; set; } = new List
(); public string Description { get; set; } = string.Empty; public decimal Price { get; set; } } }