All checks were successful
continuous-integration/drone/push Build is passing
* 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; }
|
|
}
|
|
}
|