using System;
using System.Collections.Generic;
using System.Text;
namespace ElectronNET.API.Entities
{
///
///
///
public class ProgressInfo
{
///
///
///
public string Progress { get; set; }
///
///
///
public string BytesPerSecond { get; set; }
///
///
///
public string Percent { get; set; }
///
///
///
public string Total { get; set; }
///
///
///
public string Transferred { get; set; }
}
}