Adding API Endpoints for Catalog Items (#410)
* Adding new Endpoints * update nuget packages * Modifying API to work well with Swagger. * Remove Swashbuckle.Core
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace Microsoft.eShopWeb.Web.API.CatalogItemEndpoints
|
||||
{
|
||||
public class GetByIdCatalogItemResponse : BaseResponse
|
||||
{
|
||||
public GetByIdCatalogItemResponse(Guid correlationId) : base(correlationId)
|
||||
{
|
||||
}
|
||||
|
||||
public CatalogItemDto CatalogItem { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user