コード例 #1
0
 public DownloadStateChanged(DownloadNotificationType state, object clientId, float percentage = -1, float totalGb = -1)
 {
     State      = state;
     Percentage = percentage;
     TotalGb    = totalGb;
     ClientId   = clientId;
 }
コード例 #2
0
ファイル: DownloadEventArgs.cs プロジェクト: pofo14/Pulsarr
 public DownloadEventArgs(DownloadHandle download, DownloadNotificationType state)
 {
     Download = download;
     State    = state;
 }