summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IDeserializer.cs
blob: 60478e1b4ab1bfd1690498e31d517acc5087d1eb (plain)
1
2
3
4
5
6
7
8
9
10
11
using System.Collections.Generic;
using System.Threading.Tasks;

namespace Xamarin.Forms
{
	internal interface IDeserializer
	{
		Task<IDictionary<string, object>> DeserializePropertiesAsync();
		Task SerializePropertiesAsync(IDictionary<string, object> properties);
	}
}