mirror of
https://github.com/valentincanonical/eShopOnWeb-chisel-demo.git
synced 2026-02-14 09:39:53 +00:00
* migrate from classic controller to minimal api * fix all PublicApi integration test * update all nuget package add forget project * fix pay now * Adapt readme use in memory database * undo AuthenticateEndpoint to use EndpointBaseAsync * Update README.md Co-authored-by: Steve Smith <steve@kentsmiths.com> Co-authored-by: Steve Smith <steve@kentsmiths.com>
14 lines
461 B
C#
14 lines
461 B
C#
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; }
|
|
}
|