Skip to content

Instantly share code, notes, and snippets.

@websterian
Created June 7, 2017 20:38
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/ab070b24e559976dc495a581f9eb69e7 to your computer and use it in GitHub Desktop.
Save websterian/ab070b24e559976dc495a581f9eb69e7 to your computer and use it in GitHub Desktop.
namespace Sitecore.Commerce.Connectors.MYERP.Plugin.Components
{
using System;
using Sitecore.Commerce.Core;
/// <summary>
/// The customer status component base.
/// </summary>
public abstract class ErpStatusComponentBase : Component
{
/// <summary>
/// Gets or sets a value indicating whether integrated.
/// </summary>
public bool Integrated { get; set; }
/// <summary>
/// Gets or sets the status message.
/// </summary>
public string StatusMessage { get; set; }
/// <summary>
/// Gets or sets the application url.
/// </summary>
public string ErpUrl { get; set; }
/// <summary>
/// Gets or sets the date sent.
/// </summary>
public DateTime StatusDate { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment