22 lines
469 B
C#
22 lines
469 B
C#
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; } = "";
|
|
}
|