pwt-0x01-ng/Models/ProductViewModel.cs
surtur 5c9546b9be
feat: add product CRUD functionality
* overload of MegaUpload has been added so that it could be used with
  Product as well as Carousel
* confirmation script appropriately edited to now also serve Product
2020-12-29 01:25:13 +01:00

10 lines
152 B
C#

using System.Collections.Generic;
namespace pwt_0x01_ng.Models
{
public class ProductViewModel
{
public IList<Product> Products { get; set; }
}
}