mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-12 03:29:07 +00:00
9 lines
445 B
C#
9 lines
445 B
C#
namespace AIStudio.Tools.ERIClient.DataModel;
|
|
|
|
/// <summary>
|
|
/// Information about the data source.
|
|
/// </summary>
|
|
/// <param name="Name">The name of the data source, e.g., "Internal Organization Documents."</param>
|
|
/// <param name="Description">A short description of the data source. What kind of data does it contain?
|
|
/// What is the data source used for?</param>
|
|
public readonly record struct DataSourceInfo(string Name, string Description); |