Initilize widget setting without starting its host

This commit is contained in:
TheXamlGuy
2024-01-31 22:33:23 +00:00
parent a2a5591502
commit 6dbe2db584
25 changed files with 125 additions and 83 deletions
+4 -4
View File
@@ -5,13 +5,13 @@ public class WidgetConfiguration
{
public string? Description { get; set; }
[JsonInclude]
internal Guid Id { get; set; } = Guid.NewGuid();
public string? Name { get; set; }
[JsonInclude]
internal bool IsAvailable { get; set; }
internal Guid Id { get; set; } = Guid.NewGuid();
[JsonInclude]
internal bool Enabled { get; set; }
}
public class WidgetConfiguration<TConfiguration>;