Initial commit to new repository
This commit is contained in:
21
.decompiledproj/AxCopilot/Models/CustomMoodEntry.cs
Normal file
21
.decompiledproj/AxCopilot/Models/CustomMoodEntry.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace AxCopilot.Models;
|
||||
|
||||
public class CustomMoodEntry
|
||||
{
|
||||
[JsonPropertyName("key")]
|
||||
public string Key { get; set; } = "";
|
||||
|
||||
[JsonPropertyName("label")]
|
||||
public string Label { get; set; } = "";
|
||||
|
||||
[JsonPropertyName("icon")]
|
||||
public string Icon { get; set; } = "\ud83c\udfaf";
|
||||
|
||||
[JsonPropertyName("description")]
|
||||
public string Description { get; set; } = "";
|
||||
|
||||
[JsonPropertyName("css")]
|
||||
public string Css { get; set; } = "";
|
||||
}
|
||||
Reference in New Issue
Block a user