Initial commit to new repository
This commit is contained in:
31
.decompiledproj/AxCopilot/Models/DailyUsageStats.cs
Normal file
31
.decompiledproj/AxCopilot/Models/DailyUsageStats.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace AxCopilot.Models;
|
||||
|
||||
public class DailyUsageStats
|
||||
{
|
||||
[JsonPropertyName("date")]
|
||||
public string Date { get; set; } = "";
|
||||
|
||||
[JsonPropertyName("launcherOpens")]
|
||||
public int LauncherOpens { get; set; }
|
||||
|
||||
[JsonPropertyName("commandUsage")]
|
||||
public Dictionary<string, int> CommandUsage { get; set; } = new Dictionary<string, int>();
|
||||
|
||||
[JsonPropertyName("activeSeconds")]
|
||||
public int ActiveSeconds { get; set; }
|
||||
|
||||
[JsonPropertyName("chatCounts")]
|
||||
public Dictionary<string, int> ChatCounts { get; set; } = new Dictionary<string, int>();
|
||||
|
||||
[JsonPropertyName("totalTokens")]
|
||||
public long TotalTokens { get; set; }
|
||||
|
||||
[JsonPropertyName("promptTokens")]
|
||||
public long PromptTokens { get; set; }
|
||||
|
||||
[JsonPropertyName("completionTokens")]
|
||||
public long CompletionTokens { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user