mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-09-03 03:22:56 +00:00
8 lines
276 B
C#
8 lines
276 B
C#
|
namespace AIStudio.Provider;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Data model for a source used in the response.
|
||
|
/// </summary>
|
||
|
/// <param name="Title">The title of the source.</param>
|
||
|
/// <param name="URL">The URL of the source.</param>
|
||
|
public record Source(string Title, string URL) : ISource;
|