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

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