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

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