Initial commit to new repository

This commit is contained in:
2026-04-03 18:22:19 +09:00
commit 4458bb0f52
7672 changed files with 452440 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
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<string> EnabledCategories { get; set; } = new List<string> { "motivational" };
}