mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
17 lines
396 B
C#
17 lines
396 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|