World is now on Opti ID! Learn more
AI OnAI Off
World is now on Opti ID! Learn more
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