diff --git a/app/MindWork AI Studio/Settings/Provider.cs b/app/MindWork AI Studio/Settings/Provider.cs
index 4d32f01..3385d5a 100644
--- a/app/MindWork AI Studio/Settings/Provider.cs
+++ b/app/MindWork AI Studio/Settings/Provider.cs
@@ -8,7 +8,8 @@ namespace AIStudio.Settings;
/// The provider's ID.
/// The provider's instance name. Useful for multiple instances of the same provider, e.g., to distinguish between different OpenAI API keys.
/// The provider used.
-public readonly record struct Provider(string Id, string InstanceName, Providers UsedProvider)
+/// The LLM model to use for chat.
+public readonly record struct Provider(string Id, string InstanceName, Providers UsedProvider, Model Model)
{
#region Overrides of ValueType