Added the ERI specification (aka version) to the common ERI interface

This commit is contained in:
Thorsten Sommer 2025-02-16 15:19:56 +01:00
parent eba34ff63b
commit d24f59a837
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 10 additions and 0 deletions

View File

@ -1,5 +1,6 @@
// ReSharper disable InconsistentNaming // ReSharper disable InconsistentNaming
using AIStudio.Assistants.ERI;
using AIStudio.Tools.ERIClient.DataModel; using AIStudio.Tools.ERIClient.DataModel;
namespace AIStudio.Settings.DataModel; namespace AIStudio.Settings.DataModel;
@ -39,4 +40,7 @@ public readonly record struct DataSourceERI_V1 : IERIDataSource
/// <inheritdoc /> /// <inheritdoc />
public DataSourceSecurity SecurityPolicy { get; init; } = DataSourceSecurity.NOT_SPECIFIED; public DataSourceSecurity SecurityPolicy { get; init; } = DataSourceSecurity.NOT_SPECIFIED;
/// <inheritdoc />
public ERIVersion Version { get; init; } = ERIVersion.V1;
} }

View File

@ -1,3 +1,4 @@
using AIStudio.Assistants.ERI;
using AIStudio.Tools.ERIClient.DataModel; using AIStudio.Tools.ERIClient.DataModel;
namespace AIStudio.Settings; namespace AIStudio.Settings;
@ -23,4 +24,9 @@ public interface IERIDataSource : IExternalDataSource
/// The username to use for authentication, when the auth. method is USERNAME_PASSWORD. /// The username to use for authentication, when the auth. method is USERNAME_PASSWORD.
/// </summary> /// </summary>
public string Username { get; init; } public string Username { get; init; }
/// <summary>
/// The ERI specification to use.
/// </summary>
public ERIVersion Version { get; init; }
} }