Skip to content

Instantly share code, notes, and snippets.

@websterian
Last active October 9, 2017 14:09
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/898313a0d851cbf3f3cb233c9b764fbf to your computer and use it in GitHub Desktop.
Save websterian/898313a0d851cbf3f3cb233c9b764fbf to your computer and use it in GitHub Desktop.
namespace Sitecore.Commerce.Plugin.AdventureWorks.Components
{
using Sitecore.Commerce.Core;
/// <summary>
/// The cart VIP pricing component.
/// </summary>
public class CartVIPStatusComponent : Component
{
/// <summary>
/// Gets or sets a value indicating whether to apply VIP pricing.
/// </summary>
public bool ApplyVipPricing { get; set; }
/// <summary>
/// Gets or sets the VIP discount amount.
/// </summary>
public decimal TotalVipDiscountAmount { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment