* 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>
17 lines
334 B
C#
17 lines
334 B
C#
using System;
|
|
|
|
namespace Microsoft.eShopWeb.PublicApi.CatalogItemEndpoints;
|
|
|
|
public class CreateCatalogItemResponse : BaseResponse
|
|
{
|
|
public CreateCatalogItemResponse(Guid correlationId) : base(correlationId)
|
|
{
|
|
}
|
|
|
|
public CreateCatalogItemResponse()
|
|
{
|
|
}
|
|
|
|
public CatalogItemDto CatalogItem { get; set; }
|
|
}
|