29 lines
807 B
C#
29 lines
807 B
C#
namespace AS1024.CommunityDocumentationPage.Models
|
|
{
|
|
public class CustomFields
|
|
{
|
|
}
|
|
|
|
public class Result
|
|
{
|
|
public int Id { get; set; }
|
|
public string Url { get; set; }
|
|
public string Display { get; set; }
|
|
public string Name { get; set; }
|
|
public string Tenant { get; set; }
|
|
public string Description { get; set; }
|
|
public IList<string> Tags { get; set; }
|
|
public CustomFields CustomFields { get; set; }
|
|
public DateTime Created { get; set; }
|
|
public DateTime LastUpdated { get; set; }
|
|
}
|
|
|
|
public class RouteTargets
|
|
{
|
|
public int Count { get; set; }
|
|
public object Next { get; set; }
|
|
public object Previous { get; set; }
|
|
public IList<Result> Results { get; set; }
|
|
}
|
|
}
|