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