mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 18:41:26 -07:00
15 lines
359 B
C#
15 lines
359 B
C#
using System.ComponentModel;
|
|
using Bloxstrap.Dialogs;
|
|
|
|
namespace Bloxstrap.ViewModels
|
|
{
|
|
public class HyperionDialogViewModel : FluentDialogViewModel, INotifyPropertyChanged
|
|
{
|
|
public string Version => $"Bloxstrap v{App.Version}";
|
|
|
|
public HyperionDialogViewModel(IBootstrapperDialog dialog) : base(dialog)
|
|
{
|
|
}
|
|
}
|
|
}
|