mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 22:29:07 +00:00
12 lines
292 B
C#
12 lines
292 B
C#
|
namespace AIStudio.Chat;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Data about a workspace.
|
||
|
/// </summary>
|
||
|
/// <param name="name">The name of the workspace.</param>
|
||
|
public sealed class Workspace(string name)
|
||
|
{
|
||
|
public string Name { get; set; } = name;
|
||
|
|
||
|
public List<ChatThread> Threads { get; set; } = new();
|
||
|
}
|