Files
modernkeepass/ModernKeePass10/Views/SettingsPageFrames/SettingsSavePage.xaml.cs
Geoffroy BONNEVILLE 56d93a5187 Moved application code to the Application layer
Imported Win10 project
Code cleanup
WIP - Use common UWP services for Win8.1 and Win10
2020-04-06 20:20:45 +02:00

20 lines
574 B
C#

// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
using ModernKeePass.ViewModels.ListItems;
namespace ModernKeePass.Views.SettingsPageFrames
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class SettingsSavePage
{
private SettingsSaveViewModel ViewModel { get; }
public SettingsSavePage()
{
InitializeComponent();
ViewModel = new SettingsSaveViewModel();
}
}
}