using System.Collections.Generic; namespace EnhancedScrollerDemos.NestedLinkedScrollers { /// /// Main cell view data /// public class MasterData { // This value will store the position of the detail scroller to be used // when the scroller's cell view is recycled public float normalizedScrollPosition; public float linkedScrollPosition; public List childData; } }