using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Integration.Storage { public class StorageFileHandlerProgressEventArgs : EventArgs { public long Current { get; set; } public long Delta { get; set; } public long Total { get; set; } } }