mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
26 lines
542 B
C#
26 lines
542 B
C#
using System;
|
|
using ReactiveUI.Fody.Helpers;
|
|
using Wabbajack;
|
|
using Wabbajack.RateLimiter;
|
|
|
|
namespace Wabbajack
|
|
{
|
|
public class CPUDisplayVM : ViewModel
|
|
{
|
|
[Reactive]
|
|
public ulong ID { get; set; }
|
|
[Reactive]
|
|
public DateTime StartTime { get; set; }
|
|
[Reactive]
|
|
public bool IsWorking { get; set; }
|
|
[Reactive]
|
|
public string Msg { get; set; }
|
|
[Reactive]
|
|
public Percent ProgressPercent { get; set; }
|
|
|
|
public CPUDisplayVM()
|
|
{
|
|
}
|
|
}
|
|
}
|