namespace Xamarin.Forms { public class Configuration : IPlatformElementConfiguration where TPlatform : IConfigPlatform where TElement : Element { public Configuration(TElement element) { Element = element; } public TElement Element { get; } public static Configuration Create(TElement element) { return new Configuration(element); } } }