Skip to content

Instantly share code, notes, and snippets.

@websterian
Created December 17, 2018 18:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save websterian/e4924839ab912aa97305c40ac6b4d141 to your computer and use it in GitHub Desktop.
Save websterian/e4924839ab912aa97305c40ac6b4d141 to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
using Sitecore.Commerce.Core;
namespace Sitecore.Services.Examples.Catalog.Pipelines.Arguments
{
public class CreateUpdateSellableItemArgument : PipelineArgument
{
public CreateUpdateSellableItemArgument()
{
Variants = new List<CreateUpdateSellableItemVariantArgument>();
}
public List<CreateUpdateSellableItemVariantArgument> Variants { get; set; }
public string ProductId { get; set; }
public string Description { get; set; }
public string Name { get; set; }
public string DisplayName { get; set; }
public decimal ListPrice { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment