mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-14 17:42:47 +01:00
20 lines
517 B
C#
20 lines
517 B
C#
using TweetDck.Core.Utils;
|
|
|
|
namespace TweetDck.Updates{
|
|
class UpdateInfo{
|
|
public readonly string VersionTag;
|
|
public readonly string DownloadUrl;
|
|
|
|
public string FileName{
|
|
get{
|
|
return BrowserUtils.GetFileNameFromUrl(DownloadUrl) ?? Program.BrandName+".Update.exe";
|
|
}
|
|
}
|
|
|
|
public UpdateInfo(string versionTag, string downloadUrl){
|
|
this.VersionTag = versionTag;
|
|
this.DownloadUrl = downloadUrl;
|
|
}
|
|
}
|
|
}
|