18 lines
422 B
C#
18 lines
422 B
C#
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<WindowSnapshot> Windows { get; set; } = new List<WindowSnapshot>();
|
|
|
|
[JsonPropertyName("createdAt")]
|
|
public DateTime CreatedAt { get; set; } = DateTime.Now;
|
|
}
|