Add project files.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace AS1024.CommunityDocumentationPage.Models
|
||||
{
|
||||
public class ErrorViewModel
|
||||
{
|
||||
public string? RequestId { get; set; }
|
||||
|
||||
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
||||
}
|
||||
}
|
||||
2939
AS1024.CommunityDocumentationPage/Models/NetBox.cs
Normal file
2939
AS1024.CommunityDocumentationPage/Models/NetBox.cs
Normal file
File diff suppressed because it is too large
Load Diff
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