This repository has been archived on 2023-10-28. You can view files and clone it, but cannot push or open issues or pull requests.
pwt-0x01-ng/Models/ProductViewModel.cs
surtur 5c9546b9be
All checks were successful
continuous-integration/drone/push Build is passing
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; }
}
}