mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-10-08 21:40:21 +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; |