catalog impl
This commit is contained in:
parent
fa9a12ad49
commit
14206ac477
27 changed files with 320 additions and 44 deletions
19
src/isnd/Data/Catalog/PackageRegistrationIndexViewModel.cs
Normal file
19
src/isnd/Data/Catalog/PackageRegistrationIndexViewModel.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
using Newtonsoft.Json;
|
||||
|
||||
namespace isnd.Data.Catalog
|
||||
{
|
||||
public class PackageRegistrationIndexViewModel
|
||||
{
|
||||
[JsonProperty("prerelease")]
|
||||
public bool Prerelease { get; set; }
|
||||
|
||||
[JsonProperty("data")]
|
||||
public RegistrationLeaf[] 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