10 lines
251 B
C#
10 lines
251 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; }
|
|
}
|