@Product.ProductName
@Product.Maker
@foreach (var creator in Product.Creators)
{
@creator.Name
}
@Product.Description
@GetSomething(Product)
@((Product.WishlistCount ?? 0).ToString("n0"))
@if (Product.SalesDate is not null)
{
@((Product.Downloads ?? 0).ToString("n0"))
}