using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
using Crestron.SimplSharpPro;
using Crestron.SimplSharpPro.UI;
namespace PepperDash.Essentials.Core
{
public class SubpageReferenceListItem
{
///
/// The list that this lives in
///
protected SubpageReferenceList Owner;
protected uint Index;
public SubpageReferenceListItem(uint index, SubpageReferenceList owner)
{
Index = index;
Owner = owner;
}
///
/// Called by SRL to release all referenced objects
///
public virtual void Clear()
{
}
public virtual void Refresh() { }
}
}