forked from amkovkov/GranuSightSoftware2
19 lines
557 B
C#
19 lines
557 B
C#
using Avalonia.Controls;
|
|
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace GSS2.UI.Core.ViewModels;
|
|
|
|
public partial class MainWindowViewModel : ViewModelBase
|
|
{
|
|
[ObservableProperty] public partial string Title { get; set; }
|
|
[ObservableProperty] public partial WindowDecorations WindowDecorations { get; set; }
|
|
[ObservableProperty] public partial bool Topmost { get; set; }
|
|
[ObservableProperty] public partial WindowState WindowState { get; set; }
|
|
|
|
public MainWindowViewModel()
|
|
{
|
|
Title = "GranuSight Software 2";
|
|
}
|
|
}
|