namespace QuotifyBE.DTOs; public record class AskLLMInDTO { public string? CustomPrompt { get; set; } public string? Model { get; set; } = "deepclaude"; public float? Temperature { get; set; } = 0.8f; public int? CategoryId { get; set; } = null; public bool? UseSampleQuote { get; set; } = false; };