This is the base class for all ListItems. When you create a custom ListStyle, you will use this class to reference it. The EntreeServer.Module.Controls namespace contains prebuilt controls inheriting the EntreeListItem class with built-in properties to support their asociated ListStyles.
Properties
Methods
Example
EntreeListGroup TheGroup = output.AddListGroup();
EntreeListItem TheItem = TheGroup.AddListItem();
TheItem["Title"] = "The Title";
EntreeClickActionObject TheClickAction = output.CreateClickAction();
TheClickAction["ScopeParameter"] = "Do Something";
TheItem.SetClickAction(TheClickAction);

Note: This example used the generic EntreeListItem, you can see the same product using EntreeListItemTitle.