26 lines
599 B
C#
26 lines
599 B
C#
using Wino.Core.Domain.Interfaces;
|
|
|
|
#if NET8_0
|
|
using Microsoft.UI.Xaml.Controls;
|
|
#else
|
|
using Windows.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;
|
|
}
|
|
}
|
|
}
|