AI-Studio/app/MindWork AI Studio/Provider/ISource.cs

17 lines
344 B
C#
Raw Normal View History

namespace AIStudio.Provider;
/// <summary>
/// Data model for a source used in the response.
/// </summary>
public interface ISource
{
/// <summary>
/// The title of the source.
/// </summary>
public string Title { get; }
/// <summary>
/// The URL of the source.
/// </summary>
public string URL { get; }
}