catalog impl

This commit is contained in:
Paul Schneider 2022-08-20 12:54:24 +01:00
commit 14206ac477
27 changed files with 320 additions and 44 deletions

View 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; }
}
}