mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-01-09 10:06:28 +00:00
29 lines
731 B
C#
29 lines
731 B
C#
using System;
|
|
|
|
namespace PodNoms.Api.Services.Downloader {
|
|
/// <summary>
|
|
/// The event arguement class for passing when progress event is fired
|
|
/// </summary>
|
|
public class ProgressEventArgs : EventArgs {
|
|
public object ProcessObject { get; set; }
|
|
public decimal Percentage { get; set; }
|
|
public string Error { get; set; }
|
|
|
|
public ProgressEventArgs():
|
|
base() {
|
|
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// The event arguement class for passing when progress event is fired
|
|
/// </summary>
|
|
public class DownloadEventArgs : EventArgs {
|
|
public object ProcessObject { get; set; }
|
|
public DownloadEventArgs():
|
|
base() {
|
|
|
|
}
|
|
|
|
}
|
|
} |