Add project files.

This commit is contained in:
2022-12-10 18:51:26 -08:00
parent b4277ba437
commit 1e6a1fc84b
78 changed files with 77366 additions and 0 deletions

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