Initial commit.
This commit is contained in:
21
Wino.Mail/Dialogs/StoreRatingDialog.xaml.cs
Normal file
21
Wino.Mail/Dialogs/StoreRatingDialog.xaml.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using Windows.UI.Xaml.Controls;
|
||||
using Wino.Core.Domain.Interfaces;
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user