Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out 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