forked from wanderer/pwt-0x01-ng
* 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
10 lines
152 B
C#
10 lines
152 B
C#
using System.Collections.Generic;
|
|
|
|
namespace pwt_0x01_ng.Models
|
|
{
|
|
public class ProductViewModel
|
|
{
|
|
public IList<Product> Products { get; set; }
|
|
}
|
|
}
|