diff --git a/DTOs/AskLLMInDTO.cs b/DTOs/AskLLMInDTO.cs
new file mode 100644
index 0000000..20745b3
--- /dev/null
+++ b/DTOs/AskLLMInDTO.cs
@@ -0,0 +1,12 @@
+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;
+
+};
+
diff --git a/QuotifyBE.csproj b/QuotifyBE.csproj
index de69528..d04abd4 100644
--- a/QuotifyBE.csproj
+++ b/QuotifyBE.csproj
@@ -29,6 +29,7 @@
runtime; build; native; contentfiles; analyzers; buildtransitive
+