diff --git a/app/MindWork AI Studio/Chat/ChatThread.cs b/app/MindWork AI Studio/Chat/ChatThread.cs
index 4f4f5738..a280d7f3 100644
--- a/app/MindWork AI Studio/Chat/ChatThread.cs
+++ b/app/MindWork AI Studio/Chat/ChatThread.cs
@@ -1,4 +1,5 @@
using AIStudio.Settings;
+using AIStudio.Settings.DataModel;
namespace AIStudio.Chat;
@@ -27,6 +28,16 @@ public sealed record ChatThread
///
public string SelectedProfile { get; set; } = string.Empty;
+ ///
+ /// Is this chat thread using data sources?
+ ///
+ public bool UseDataSources { get; set; }
+
+ ///
+ /// The data source options for this chat thread.
+ ///
+ public DataSourceOptions DataSourceOptions { get; set; } = new();
+
///
/// The name of the chat thread. Usually generated by an AI model or manually edited by the user.
///