Newer
Older
TestingWithoutInterfaces / src / PublicApi / CatalogItemEndpoints / CatalogItemDto.cs
@Derek Comartin Derek Comartin on 5 Dec 2022 379 bytes Init
namespace Microsoft.eShopWeb.PublicApi.CatalogItemEndpoints;

public class CatalogItemDto
{
    public int 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 CatalogTypeId { get; set; }
    public int CatalogBrandId { get; set; }
}