13 lines
317 B
C#
13 lines
317 B
C#
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; }
|
|
}
|