Files
eShopOnWeb/src/Web/API/CatalogItemEndpoints/GetById.GetByIdCatalogItemResponse.cs
Steve Smith b4d0f07c2e Adding API Endpoints for Catalog Items (#410)
* Adding new Endpoints

* update nuget packages

* Modifying API to work well with Swagger.

* Remove Swashbuckle.Core
2020-06-25 16:23:44 -04:00

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; }
}
}