using System.Collections.Generic; namespace EnhancedScrollerDemos.NestedScrollers { /// /// 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 List childData; } }