using Wino.Domain.Interfaces; #if NET8_0 using Microsoft.UI.Xaml.Controls; #else using Microsoft.UI.Xaml.Controls; #endif namespace Wino.Dialogs { public sealed partial class StoreRatingDialog : ContentDialog, IStoreRatingDialog { public bool DontAskAgain { get; set; } public bool RateWinoClicked { get; set; } public StoreRatingDialog() { this.InitializeComponent(); } private void RateClicked(ContentDialog sender, ContentDialogButtonClickEventArgs args) { RateWinoClicked = true; } } }