mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-28 12:19:41 +00:00
9 lines
258 B
C#
9 lines
258 B
C#
namespace PodNoms.Api.Models.ViewModels
|
|
{
|
|
public class ProcessProgressEvent {
|
|
public double Percentage { get; set; }
|
|
public string TotalSize;
|
|
public string CurrentSpeed { get; set; }
|
|
public string ETA { get; set; }
|
|
}
|
|
} |