diff --git a/app/MindWork AI Studio/Settings/DataModel/DataSourceERI_V1.cs b/app/MindWork AI Studio/Settings/DataModel/DataSourceERI_V1.cs
index acf49ec..addec25 100644
--- a/app/MindWork AI Studio/Settings/DataModel/DataSourceERI_V1.cs
+++ b/app/MindWork AI Studio/Settings/DataModel/DataSourceERI_V1.cs
@@ -25,23 +25,15 @@ public readonly record struct DataSourceERI_V1 : IERIDataSource
///
public DataSourceType Type { get; init; } = DataSourceType.NONE;
- ///
- /// The hostname of the ERI server.
- ///
+ ///
public string Hostname { get; init; } = string.Empty;
- ///
- /// The port of the ERI server.
- ///
+ ///
public int Port { get; init; }
- ///
- /// The authentication method to use.
- ///
+ ///
public AuthMethod AuthMethod { get; init; } = AuthMethod.NONE;
- ///
- /// The username to use for authentication, when the auth. method is USERNAME_PASSWORD.
- ///
+ ///
public string Username { get; init; } = string.Empty;
}
\ No newline at end of file
diff --git a/app/MindWork AI Studio/Settings/IERIDataSource.cs b/app/MindWork AI Studio/Settings/IERIDataSource.cs
index 42cd3f7..0d917d1 100644
--- a/app/MindWork AI Studio/Settings/IERIDataSource.cs
+++ b/app/MindWork AI Studio/Settings/IERIDataSource.cs
@@ -4,9 +4,23 @@ namespace AIStudio.Settings;
public interface IERIDataSource : IExternalDataSource
{
+ ///
+ /// The hostname of the ERI server.
+ ///
public string Hostname { get; init; }
+ ///
+ /// The port of the ERI server.
+ ///
public int Port { get; init; }
+ ///
+ /// The authentication method to use.
+ ///
public AuthMethod AuthMethod { get; init; }
+
+ ///
+ /// The username to use for authentication, when the auth. method is USERNAME_PASSWORD.
+ ///
+ public string Username { get; init; }
}
\ No newline at end of file