mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 18:32:12 +00:00
23 lines
458 B
C#
23 lines
458 B
C#
namespace AIStudio.Tools;
|
|
|
|
/// <summary>
|
|
/// Data model for a source used in the response.
|
|
/// </summary>
|
|
public interface ISource
|
|
{
|
|
/// <summary>
|
|
/// The title of the source.
|
|
/// </summary>
|
|
public string Title { get; }
|
|
|
|
/// <summary>
|
|
/// The URL of the source.
|
|
/// </summary>
|
|
public string URL { get; }
|
|
|
|
/// <summary>
|
|
/// The origin of the source.
|
|
/// </summary>
|
|
public SourceOrigin Origin { get; }
|
|
}
|