diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2023-02-01 09:26:53 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2023-02-01 09:26:53 +0300 |
commit | 2a238d65e4ce66d6c79d287a19cefcda96afc747 (patch) | |
tree | bf8a1a9c296f9b7b71460418d624d5d2a183b98b /Models/UnderwearBundle.cs | |
parent | 8faebbd63cf19fd21947c1f98ac80cc2e714c5ba (diff) |
Edit Seed data class
Diffstat (limited to 'Models/UnderwearBundle.cs')
-rw-r--r-- | Models/UnderwearBundle.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Models/UnderwearBundle.cs b/Models/UnderwearBundle.cs index 5617b07..1f451e6 100644 --- a/Models/UnderwearBundle.cs +++ b/Models/UnderwearBundle.cs @@ -4,7 +4,7 @@ namespace MyDarling.Models { public int Id { get; set; } public string Name { get; set; } = "My Darling Bundle"; - public ICollection<Figure> Figures { get; set; } = new List<Figure>(); + public List<Figure> Figures { get; set; } = new List<Figure>(); public string Description { get; set; } = string.Empty; public decimal Price { get; set; } } |