13 lines
No EOL
281 B
C#
13 lines
No EOL
281 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace isnd.Data.Catalog
|
|
{
|
|
public class RegistrationPageIndex
|
|
{
|
|
[JsonProperty("count")]
|
|
public int Count { get => Items?.Length ?? 0; }
|
|
|
|
[JsonProperty("items")]
|
|
public RegistrationPage[] Items { get; set; }
|
|
}
|
|
} |