maui-linux/Xamarin.Forms.Core/IDeserializer.cs

13 строки
355 B
C#

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);
}
}