mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-16 17:23:37 +00:00
8 lines
373 B
C#
8 lines
373 B
C#
|
|
namespace AIStudio.Tools;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// One group of a source list: a heading and the sources below it.
|
||
|
|
/// </summary>
|
||
|
|
/// <param name="Heading">The heading above the group.</param>
|
||
|
|
/// <param name="Sources">The sources of the group, in the order they are shown.</param>
|
||
|
|
public readonly record struct SourceGroup(string Heading, IReadOnlyList<NumberedSource> Sources);
|