mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-22 23:09:38 -04:00
Migrate more stuff to common. Add open sans font for Windows. Add in app updating for Windows.
19 lines
422 B
C#
19 lines
422 B
C#
using WowUp.Common.Enums;
|
|
|
|
namespace WowUp.Common.Models.Events
|
|
{
|
|
public class WowUpUpdateEventArgs
|
|
{
|
|
public ApplicationUpdateState State { get; set; }
|
|
public decimal Progress { get; set; }
|
|
|
|
public WowUpUpdateEventArgs(
|
|
ApplicationUpdateState state,
|
|
decimal progress = 0.0m)
|
|
{
|
|
State = state;
|
|
Progress = progress;
|
|
}
|
|
}
|
|
}
|