23 lines
604 B
C#
23 lines
604 B
C#
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" };
|
|
}
|