forked from wanderer/pwt-0x01-ng
* consolidates {Carousel,Product}ViewModel in a single ViewModel since we're going to need both carousels and products in the index
11 lines
202 B
C#
11 lines
202 B
C#
using System.Collections.Generic;
|
|
|
|
namespace pwt_0x01_ng.Models
|
|
{
|
|
public class UltimateViewModel
|
|
{
|
|
public IList<Carousel> Carousels { get; set; }
|
|
public IList<Product> Products { get; set; }
|
|
}
|
|
}
|