Skip to content

Instantly share code, notes, and snippets.

@websterian
Created December 17, 2018 18:04
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/512c9102649b194c7db9fe8f5451af2b to your computer and use it in GitHub Desktop.
Save websterian/512c9102649b194c7db9fe8f5451af2b to your computer and use it in GitHub Desktop.
using Sitecore.Commerce.Core;
namespace Sitecore.Services.Examples.Catalog.Pipelines.Arguments
{
public class CreateUpdateSellableItemVariantArgument : PipelineArgument
{
public CreateUpdateSellableItemVariantArgument(string productId, string variantId)
{
ProductId = productId;
VariantId = variantId;
}
public string ProductId { get; set; }
public string VariantId { 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