Newer
Older
TestingWithoutInterfaces / src / PublicApi / CatalogItemEndpoints / CatalogItemGetByIdEndpoint.GetByIdCatalogItemRequest.cs
@Derek Comartin Derek Comartin on 5 Dec 2022 274 bytes Init
namespace Microsoft.eShopWeb.PublicApi.CatalogItemEndpoints;

public class GetByIdCatalogItemRequest : BaseRequest
{
    public int CatalogItemId { get; init; }

    public GetByIdCatalogItemRequest(int catalogItemId)
    {
        CatalogItemId = catalogItemId;
    }
}