mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 09:18:08 +00:00
8 lines
258 B
C#
8 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; }
|
|
}
|
|
} |