using AIStudio.Settings; namespace AIStudio.Tools; /// /// Contains both the allowed and selected data sources. /// /// /// The selected data sources are a subset of the allowed data sources. /// /// The allowed data sources. /// The selected data sources, which are a subset of the allowed data sources. public readonly record struct AllowedSelectedDataSources(IReadOnlyList AllowedDataSources, IReadOnlyList SelectedDataSources);