namespace AIStudio.Tools;
///
/// Data model for a source used in the response.
///
public interface ISource
{
///
/// The title of the source.
///
public string Title { get; }
///
/// The URL of the source.
///
public string URL { get; }
///
/// The origin of the source.
///
public SourceOrigin Origin { get; }
}