Initial commit to new repository
This commit is contained in:
22
.decompiledproj/AxCopilot/Models/ReminderSettings.cs
Normal file
22
.decompiledproj/AxCopilot/Models/ReminderSettings.cs
Normal 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" };
|
||||
}
|
||||
Reference in New Issue
Block a user