Files

21 lines
523 B
C#
Raw Permalink Normal View History

2026-06-17 15:04:35 +08:00
using CommunityToolkit.Mvvm.ComponentModel;
namespace HME_MoistureLossMeter.ViewModels
{
public abstract class ViewModelBase : ObservableObject
{
private bool _isBusy;
public bool IsBusy
{
get => _isBusy;
set => SetProperty(ref _isBusy, value);
}
private string _statusMessage = "就绪";
public string StatusMessage
{
get => _statusMessage;
set => SetProperty(ref _statusMessage, value);
}
}
}