DataList.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;
namespace DemoConnector.Models
{
/// <summary>
/// Represents a domain-specific data list of
/// contacts, resources, buildings, or anything else.
/// </summary>
public class DataList : IDataList
{
/// <summary>
/// The internal Id of the list for calling various service methods.
/// </summary>
public int Id { get; set; }
/// <summary>
/// Display name of the list.
/// </summary>
public string Name { get; set; }
/// <summary>
/// The name of the parent of this list.
/// </summary>
public string ParentName { get; set; }
}
}
Related topics
- AuthenticationService.cs
- InProgram.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