mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
11 lines
314 B
C#
11 lines
314 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|