mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-09-18 20:00:21 +00:00
8 lines
311 B
C#
8 lines
311 B
C#
|
namespace AIStudio.Provider.Perplexity;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Data model for a search result.
|
||
|
/// </summary>
|
||
|
/// <param name="Title">The title of the search result.</param>
|
||
|
/// <param name="URL">The URL of the search result.</param>
|
||
|
public sealed record SearchResult(string Title, string URL) : Source(Title, URL);
|