scafolded project

This commit is contained in:
2023-01-03 18:36:40 -07:00
parent b2e79697b8
commit 55cd8162ed
161 changed files with 5987 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
using System;
namespace Model.Users {
public class PageViewModel {
[JsonPropertyName("id")]
public string Id { get; set; }
[JsonPropertyName("app_name")]
public string AppName { get; set; }
[JsonPropertyName("url")]
public string Url { get; set; }
[JsonPropertyName("context_type")]
public string ContextType { get; set; }
[JsonPropertyName("asset_type")]
public string AssetType { get; set; }
[JsonPropertyName("controller")]
public string Controller { get; set; }
[JsonPropertyName("action")]
public string Action { get; set; }
[JsonPropertyName("interaction_seconds")]
public decimal? InteractionSeconds { get; set; }
[JsonPropertyName("created_at")]
public DateTime CreatedAt { get; set; }
[JsonPropertyName("user_request")]
public bool? UserRequest { get; set; }
[JsonPropertyName("render_time")]
public double? RenderTime { get; set; }
[JsonPropertyName("user_agent")]
public string UserAgent { get; set; }
[JsonPropertyName("participated")]
public bool? Participated { get; set; }
[JsonPropertyName("http_method")]
public string HttpMethod { get; set; }
[JsonPropertyName("remote_ip")]
public string RemoteIp { get; set; }
[JsonPropertyName("links")]
public PageViewLinksModel Links { get; set; }
}
}