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/UltimateViewModel.cs
surtur 3ac4659680
All checks were successful
continuous-integration/drone/push Build is passing
add: UltimateViewModel (as per #11)
* consolidates {Carousel,Product}ViewModel in a single ViewModel since
  we're going to need both carousels and products in the index
2021-02-12 11:45:56 +01:00

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; }
}
}