mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-09-03 03:02:56 +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; }
|
||
|
}
|