Initial commit to new repository
This commit is contained in:
15
.decompiledproj/AxCopilot/Models/SnippetEntry.cs
Normal file
15
.decompiledproj/AxCopilot/Models/SnippetEntry.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace AxCopilot.Models;
|
||||
|
||||
public class SnippetEntry
|
||||
{
|
||||
[JsonPropertyName("key")]
|
||||
public string Key { get; set; } = "";
|
||||
|
||||
[JsonPropertyName("name")]
|
||||
public string Name { get; set; } = "";
|
||||
|
||||
[JsonPropertyName("content")]
|
||||
public string Content { get; set; } = "";
|
||||
}
|
||||
Reference in New Issue
Block a user