1 2 3 4 5 6 7 8 9
namespace Xamarin.Forms.Pages { public interface IDataItem { string Name { get; set; } object Value { get; set; } } }