mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-10-08 21:40:21 +00:00
17 lines
344 B
C#
17 lines
344 B
C#
namespace AIStudio.Provider;
|
|
|
|
/// <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; }
|
|
} |