Skip to content

Instantly share code, notes, and snippets.

@websterian
Last active August 10, 2018 21:51
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/2ab109c26b7b2a9e339df4725d434491 to your computer and use it in GitHub Desktop.
Save websterian/2ab109c26b7b2a9e339df4725d434491 to your computer and use it in GitHub Desktop.
namespace Sitecore.Services.Examples.Composer
{
using Sitecore.Commerce.Core;
using Sitecore.Framework.Conditions;
public class CreateComposerTemplatesArgument : PipelineArgument
{
public CreateComposerTemplatesArgument(object parameter)
{
Condition.Requires(parameter).IsNotNull("The parameter can not be null");
this.Parameter = parameter;
}
public object Parameter { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment