13 lines
329 B
C#
13 lines
329 B
C#
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; }
|
|
|
|
// Navigation property
|
|
public ListEntity List { get; set; } = null!;
|
|
}
|