22 lines
496 B
C#
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;
|
|
}
|
|
}
|
|
}
|