November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
Version Info: This topic applies to Episerver.ConnectForMarketingAutomation 4.0.0 and lower. For later versions, see Sample Connector - IMarketingConnector.
using EPiServer.MarketingAutomationIntegration.Domain;
using System;
namespace DemoConnector.Models
{
/// <summary>
/// Default implementation of an InProgram class.
/// </summary>
public class InProgram : IInProgram
{
/// <summary>
/// The date the program was entered.
/// </summary>
public DateTime EnteredDate { get; set; }
/// <summary>
/// The date the program was exited.
/// </summary>
public DateTime? ExitedDate { get; set; }
/// <summary>
/// The program Id associated with the in InProgram object.
/// </summary>
public int ProgramId { get; set; }
}
}
Last updated: Dec 14, 2015