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:
Steve Smith
2020-06-25 16:23:44 -04:00
committed by GitHub
parent 3b1339787f
commit b4d0f07c2e
20 changed files with 307 additions and 22 deletions

View File

@@ -0,0 +1,19 @@
using System;
namespace Microsoft.eShopWeb.Web.API
{
/// <summary>
/// Base class used by API responses
/// </summary>
public abstract class BaseResponse : BaseMessage
{
public BaseResponse(Guid correlationId) : base()
{
base._correlationId = correlationId;
}
public BaseResponse()
{
}
}
}