namespace AIStudio.Provider; /// /// 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; } }