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