mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 16:10:16 -04:00
20 lines
574 B
C#
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|