flower-story/FlowerApp/Controls/PropertyExtension.cs
2023-07-27 22:07:24 +08:00

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);
}
}