mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 07:30:15 -04:00
29 lines
689 B
C#
29 lines
689 B
C#
using Windows.Storage;
|
|
using ModernKeePass.Application.Common.Interfaces;
|
|
|
|
namespace ModernKeePass.ViewModels
|
|
{
|
|
public class NewVm : OpenVm
|
|
{
|
|
private string _importFormatHelp;
|
|
|
|
public bool IsImportChecked { get; set; }
|
|
|
|
public IStorageFile ImportFile { get; set; }
|
|
|
|
public string ImportFileExtensionFilter { get; set; } = "*";
|
|
|
|
public IImportFormat ImportFormat { get; set; }
|
|
|
|
public string ImportFormatHelp
|
|
{
|
|
get { return _importFormatHelp; }
|
|
set
|
|
{
|
|
_importFormatHelp = value;
|
|
OnPropertyChanged(nameof(ImportFormatHelp));
|
|
}
|
|
}
|
|
}
|
|
}
|