mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-22 00:22:01 +00:00
14 lines
269 B
C#
14 lines
269 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace Splitter_UI.ViewModels;
|
|
|
|
public partial class StatusBarViewModel : ObservableObject
|
|
{
|
|
[ObservableProperty]
|
|
private string _statusText = "Ready";
|
|
|
|
[ObservableProperty]
|
|
private double _percent;
|
|
|
|
}
|