Try our conversational search powered by Generative AI!

InProgram.cs

Version InfoThis 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; }
    }
}

Related topics

Last updated: Dec 14, 2015