18 lines
525 B
C#
18 lines
525 B
C#
using System;
|
|
|
|
namespace Microsoft.eShopOnContainers.WebMVC.Models
|
|
{
|
|
public class CatalogItem
|
|
{
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public decimal Price { get; set; }
|
|
public string PictureUri { get; set; }
|
|
public int CatalogBrandId { get; set; }
|
|
public string CatalogBrand { get; set; }
|
|
public int CatalogTypeId { get; set; }
|
|
public string CatalogType { get; set; }
|
|
|
|
}
|
|
} |