11 строки
271 B
C#
11 строки
271 B
C#
|
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);
|
||
|
}
|
||
|
}
|