AI-Studio/app/MindWork AI Studio/Tools/ISource.cs
2026-07-23 12:59:32 +02:00

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; }
}