11 lines
302 B
C#
11 lines
302 B
C#
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; }
|
|
}
|