dark theme
This commit is contained in:
parent
45d6c22d1e
commit
386eec262d
13 changed files with 7929 additions and 97 deletions
|
|
@ -1,12 +1,20 @@
|
|||
using isnd.Data;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace isnd.ViewModels
|
||||
{
|
||||
public class PackageIndexViewModel
|
||||
{
|
||||
[JsonProperty("prerelease")]
|
||||
public bool Prerelease { get; set; }
|
||||
public Package[] data {get; set;}
|
||||
public string query { get; set; }
|
||||
public int totalHits { get; internal set; }
|
||||
|
||||
[JsonProperty("data")]
|
||||
public Package[] Data {get; set;}
|
||||
|
||||
[JsonProperty("query")]
|
||||
public string Query { get; set; }
|
||||
|
||||
[JsonProperty("totalHits")]
|
||||
public int TotalHits { get; internal set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue