Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

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