Newer
Older
eShopOnWeb-VerticalFeatureSlices / src / PublicApi / CatalogItemEndpoints / Create.CreateCatalogItemRequest.cs
@Derek Comartin Derek Comartin on 27 Jul 2021 509 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; }
    }

}