19 lines
No EOL
446 B
C#
19 lines
No EOL
446 B
C#
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; }
|
|
}
|
|
} |