19 lines
510 B
C#
19 lines
510 B
C#
|
|
namespace Assets.Core
|
|
{
|
|
public class DownloadInfo
|
|
{
|
|
public string DisplayName { get; set; }
|
|
public string FileName { get; set; }
|
|
public string Url { get; set; }
|
|
public float Process { get; set; }
|
|
public DownloadInfo(string FileName, string DisplayName, float Process,string url = "")
|
|
{
|
|
this.FileName = FileName;
|
|
this.DisplayName = DisplayName;
|
|
this.Process = Process;
|
|
this.Url = url;
|
|
}
|
|
}
|
|
}
|