mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
New Save button in the AppBar EntryPage now uses the same AppBar as GroupPage (but not shared...) Some new Symbol mappings
21 lines
431 B
C#
21 lines
431 B
C#
using Windows.ApplicationModel;
|
|
|
|
namespace ModernKeePass.ViewModels
|
|
{
|
|
public class AboutVm
|
|
{
|
|
public string Name { get; } = Package.Current.DisplayName;
|
|
|
|
public string Version
|
|
{
|
|
get
|
|
{
|
|
var package = Package.Current;
|
|
var version = package.Id.Version;
|
|
|
|
return $"{version.Major}.{version.Minor}";
|
|
}
|
|
}
|
|
}
|
|
}
|