10 lines
284 B
C#
10 lines
284 B
C#
namespace Blahblah.FlowerApp;
|
|
|
|
internal sealed class PropertyExtension
|
|
{
|
|
public static BindableProperty CreateProperty<T, V>(string propertyName, T? defaultValue = default)
|
|
{
|
|
return BindableProperty.Create(propertyName, typeof(T), typeof(V), defaultValue);
|
|
}
|
|
}
|