mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2025-07-25 12:54:41 +00:00
11 lines
283 B
C#
11 lines
283 B
C#
using Wabbajack.DTOs.JsonConverters;
|
|
|
|
namespace Wabbajack.DTOs.BrowserMessages;
|
|
|
|
[JsonName("DownloadProgress")]
|
|
public class DownloadProgress : IMessage
|
|
{
|
|
public bool IsDone { get; set; }
|
|
public long BytesPerSecond { get; set; }
|
|
public long BytesCompleted { get; set; }
|
|
} |