using System; using System.Collections.Generic; namespace Tizen.NUI.Xaml { class HydrationContext { public HydrationContext() { Values = new Dictionary(); Types = new Dictionary(); } public Dictionary Values { get; } public Dictionary Types { get; } public HydrationContext ParentContext { get; set; } public Action ExceptionHandler { get; set; } public object RootElement { get; set; } } }