Files
BeWoPlaner/SharedLauncher/Update/DownloadProgressEventArgs.cs
rene 4fbfdbaf2c Unit Tests erstellt
Informationen ausgelagert
Kleines Spy/Test Programm erstellt
Mehr Exceptions/InvalidUpdateFileRequestException.cs
Launcher Host in Download Server geändert
Download Server macht zusätzlich Abfrage an den Hauptserver
Download geht jetzt stückweise von statten
2022-12-28 16:36:59 +01:00

22 lines
496 B
C#

using BS.SharedLauncher.DataContract;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BS.SharedLauncher.Update
{
public class DownloadProgressEventArgs : EventArgs
{
public string Size { get; set; }
public UpdateFileDC File { get; set; }
public DownloadProgressEventArgs(string size, UpdateFileDC file)
{
Size = size;
File = file;
}
}
}