using System.Collections.Generic; using System.Text.Json.Serialization; namespace AxCopilot.Models; public class ReminderSettings { [JsonPropertyName("enabled")] public bool Enabled { get; set; } = false; [JsonPropertyName("corner")] public string Corner { get; set; } = "bottom-right"; [JsonPropertyName("intervalMinutes")] public int IntervalMinutes { get; set; } = 60; [JsonPropertyName("displaySeconds")] public int DisplaySeconds { get; set; } = 15; [JsonPropertyName("enabledCategories")] public List EnabledCategories { get; set; } = new List { "motivational" }; }