using System.Collections.Generic; namespace Xamarin.Forms.Pages { public interface IDataSource { IReadOnlyList Data { get; } bool IsLoading { get; } object this[string key] { get; set; } IEnumerable MaskedKeys { get; } void MaskKey(string key); void UnmaskKey(string key); } }