feat(data): add ListConfigEntity, TaskRunEntity, AgentInfo models and task config fields

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Mika Kuns
2026-04-14 11:27:04 +02:00
parent 36ae6532b4
commit 02aaa9da64
4 changed files with 36 additions and 0 deletions

View File

@@ -23,4 +23,7 @@ public sealed class TaskEntity
public DateTime? StartedAt { get; set; }
public DateTime? FinishedAt { get; set; }
public string CommitType { get; set; } = "chore";
public string? Model { get; set; }
public string? SystemPrompt { get; set; }
public string? AgentPath { get; set; }
}