cs11dotnet7/vscode/PracticalApps/Northwind.Mvc/Models/HomeIndexViewModel.cs
2022-03-13 16:17:01 +00:00

11 lines
192 B
C#

using Packt.Shared; // Category, Product
namespace Northwind.Mvc.Models;
public record HomeIndexViewModel
(
int VisitorCount,
IList<Category> Categories,
IList<Product> Products
);