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

@@ -0,0 +1,9 @@
namespace ClaudeDo.Data.Models;
public sealed class ListConfigEntity
{
public required string ListId { get; init; }
public string? Model { get; set; }
public string? SystemPrompt { get; set; }
public string? AgentPath { get; set; }
}