Add upgrade check.

This commit is contained in:
qianlifeng
2014-12-14 23:16:29 +08:00
parent ac3b86fb85
commit 128453fad1
8 changed files with 186 additions and 7 deletions

16
Wox/Update/Release.cs Normal file
View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Wox.Update
{
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; }
}
}