bloxstrap/Bloxstrap/ViewModels/AboutViewModel.cs
2023-04-23 22:52:18 +07:00

19 lines
406 B
C#

using System.Windows.Input;
using Bloxstrap.Helpers;
using CommunityToolkit.Mvvm.Input;
namespace Bloxstrap.ViewModels
{
public class AboutViewModel
{
public string Version => $"Version {App.Version}";
public ICommand CFUWindowCommand => new RelayCommand(CheckForUpdate);
private void CheckForUpdate()
{
Updater.CheckForUpdate();
}
}
}