Newer
Older
ReliableMessaging / src / PublicApi / CatalogItemEndpoints / CreateCatalogItemEndpoint.CreateCatalogItemRequest.cs
@Derek Comartin Derek Comartin on 10 Apr 2023 461 bytes Init
namespace Microsoft.eShopWeb.PublicApi.CatalogItemEndpoints;

public class CreateCatalogItemRequest : BaseRequest
{
    public int CatalogBrandId { get; set; }
    public int CatalogTypeId { get; set; }
    public string Description { get; set; }
    public string Name { get; set; }
    public string PictureUri { get; set; }
    public string PictureBase64 { get; set; }
    public string PictureName { get; set; }
    public decimal Price { get; set; }
}