using System.Collections.Generic;
namespace ThinkingAnalytics
{
///
/// Dynamic super properties interfaces.
///
public interface IDynamicSuperProperties
{
Dictionary GetDynamicSuperProperties();
}
///
/// Auto track event callback interfaces.
///
public interface IAutoTrackEventCallback
{
Dictionary AutoTrackEventCallback(int type, Dictionary properties);
}
}