LANCommander/LANCommander.Launcher/ViewModels/SplashViewModel.cs

18 lines
376 B
C#
Raw Permalink Normal View History

using CommunityToolkit.Mvvm.ComponentModel;
namespace LANCommander.Launcher.ViewModels;
public partial class SplashViewModel : ViewModelBase
{
[ObservableProperty]
private string _statusMessage = "Starting...";
[ObservableProperty]
private bool _isLoading = true;
public void UpdateStatus(string message)
{
StatusMessage = message;
}
}