feat: Implement history tracking with new CLI commands for viewing past transcripts and usage statistics.
This commit is contained in:
12
Core/HistoryEntry.cs
Normal file
12
Core/HistoryEntry.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace Toak.Core;
|
||||
|
||||
public class HistoryEntry
|
||||
{
|
||||
public DateTime Timestamp { get; set; }
|
||||
public string RawTranscript { get; set; } = string.Empty;
|
||||
public string RefinedText { get; set; } = string.Empty;
|
||||
public string? SkillName { get; set; }
|
||||
public long DurationMs { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user