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

namespace Microsoft.eShopWeb.PublicApi.CatalogItemEndpoints;

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

    public DeleteCatalogItemResponse()
    {
    }

    public string Status { get; set; } = "Deleted";
}