PowerToys/Wox.Core/Updater/Release.cs

16 lines
405 B
C#
Raw Normal View History

2015-01-27 21:51:29 +08:00
namespace Wox.Core.Updater
{
public class Release
{
public string version { get; set; }
public string download_link { get; set; }
public string download_link1 { get; set; }
public string download_link2 { get; set; }
public string description { get; set; }
2015-02-01 22:46:56 +08:00
public override string ToString()
{
return version;
}
2015-01-27 21:51:29 +08:00
}
}