powerfun-unity/Assets/Core/DownloadInfo.cs
2023-02-07 18:35:16 +08:00

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;
}
}
}