namespace Qwirkle.Views; using Microsoft.Maui.Controls; public partial class EntryPlayer : ContentView { public EntryPlayer() { InitializeComponent(); } public static readonly BindableProperty TextInProperty = BindableProperty.Create("TextIn", typeof(string), typeof(Button), "none"); public string TextIn { get => (string)GetValue(TextInProperty); set => SetValue(TextInProperty, value); } public static readonly BindableProperty TextOnProperty = BindableProperty.Create("TextOn", typeof(string), typeof(Button), "none"); public string TextOn { get => (string)GetValue(TextOnProperty); set => SetValue(TextOnProperty, value); } }