Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

DataList.cs

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

Last updated: Dec 14, 2015