InProgram.cs
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; }
}
}
Related topics
- AuthenticationService.cs
- DataList.cs
- ListService.cs
- NamespaceDoc.cs
- ProfileService.cs
- Program.cs
- ProgramService.cs
- Provider.cs
- ProviderServices.cs
- ScoringService.cs
- app.config
- module.config
- packages.config
Last updated: Dec 14, 2015