maui-linux/Xamarin.Forms.Core/BindablePropertyKey.cs

17 строки
328 B
C#

using System;
namespace Xamarin.Forms
{
public sealed class BindablePropertyKey
{
internal BindablePropertyKey(BindableProperty property)
{
if (property == null)
throw new ArgumentNullException("property");
BindableProperty = property;
}
public BindableProperty BindableProperty { get; private set; }
}
}