Files

13 lines
240 B
C#

using System.Text.Json.Serialization;
namespace AxCopilot.Models;
public class PluginEntry
{
[JsonPropertyName("path")]
public string Path { get; set; } = "";
[JsonPropertyName("enabled")]
public bool Enabled { get; set; } = true;
}