Add project files.
This commit is contained in:
28
AS1024.CommunityDocumentationPage/Models/RouteTargets.cs
Normal file
28
AS1024.CommunityDocumentationPage/Models/RouteTargets.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user