Newer
Older
TestingWithoutInterfaces / src / PublicApi / CatalogItemEndpoints / CreateCatalogItemEndpoint.CreateCatalogItemResponse.cs
@Derek Comartin Derek Comartin on 5 Dec 2022 334 bytes Init
using System;

namespace Microsoft.eShopWeb.PublicApi.CatalogItemEndpoints;

public class CreateCatalogItemResponse : BaseResponse
{
    public CreateCatalogItemResponse(Guid correlationId) : base(correlationId)
    {
    }

    public CreateCatalogItemResponse()
    {
    }

    public CatalogItemDto CatalogItem { get; set; }
}