using System; using System.Collections.Generic; using System.Text.Json.Serialization; namespace AxCopilot.Models; public class WorkspaceProfile { [JsonPropertyName("name")] public string Name { get; set; } = ""; [JsonPropertyName("windows")] public List Windows { get; set; } = new List(); [JsonPropertyName("createdAt")] public DateTime CreatedAt { get; set; } = DateTime.Now; }