using System; using System.Windows; using Xamarin.Forms; namespace DataDisplay.DataSource { /// Mapping class holds information about mapping of TSource type /// to some DependencyProperty. /// Mapping source type. internal sealed class Mapping { /// Property that will be set. internal BindableProperty Property { get; set; } /// Function that computes value for property from TSource type. internal Func F { get; set; } } }