* Adding new Endpoints * update nuget packages * Modifying API to work well with Swagger. * Remove Swashbuckle.Core
14 lines
312 B
C#
14 lines
312 B
C#
using System;
|
|
|
|
namespace Microsoft.eShopWeb.Web.API.CatalogItemEndpoints
|
|
{
|
|
public class GetByIdCatalogItemResponse : BaseResponse
|
|
{
|
|
public GetByIdCatalogItemResponse(Guid correlationId) : base(correlationId)
|
|
{
|
|
}
|
|
|
|
public CatalogItemDto CatalogItem { get; set; }
|
|
}
|
|
}
|