mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-03-12 22:49:07 +00:00
13 lines
584 B
C#
13 lines
584 B
C#
|
using AIStudio.Settings;
|
||
|
|
||
|
namespace AIStudio.Tools;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Contains both the allowed and selected data sources.
|
||
|
/// </summary>
|
||
|
/// <remarks>
|
||
|
/// The selected data sources are a subset of the allowed data sources.
|
||
|
/// </remarks>
|
||
|
/// <param name="AllowedDataSources">The allowed data sources.</param>
|
||
|
/// <param name="SelectedDataSources">The selected data sources, which are a subset of the allowed data sources.</param>
|
||
|
public readonly record struct AllowedSelectedDataSources(IReadOnlyList<IDataSource> AllowedDataSources, IReadOnlyList<IDataSource> SelectedDataSources);
|