namespace AIStudio.Chat; /// /// Data about a workspace. /// /// The name of the workspace. public sealed class Workspace(string name) { public string Name { get; set; } = name; public List Threads { get; set; } = new(); }