15 lines
342 B
C#
15 lines
342 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using UTB.Eshop.Web.Models.Entity;
|
|
|
|
namespace UTB.Eshop.Web.Models.ViewModels
|
|
{
|
|
public class IndexViewModel
|
|
{
|
|
public IList<CarouselItem> CarouselItems { get; set; }
|
|
public IList<Product> Products { get; set; }
|
|
}
|
|
}
|