using System.Collections.Generic; using System.Threading.Tasks; namespace Xamarin.Forms { internal interface IDeserializer { Task> DeserializePropertiesAsync(); Task SerializePropertiesAsync(IDictionary properties); } }