mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
11 lines
192 B
C#
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
|
|
);
|