basic Dashboard

This commit is contained in:
2025-06-14 20:35:42 +02:00
parent 30758bbd88
commit 1597409365
8 changed files with 409 additions and 26 deletions

View File

@@ -35,6 +35,9 @@ namespace Watcher.Migrations
b.Property<int?>("ImageId")
.HasColumnType("int");
b.Property<bool>("IsRunning")
.HasColumnType("tinyint(1)");
b.Property<string>("Name")
.IsRequired()
.HasColumnType("longtext");
@@ -149,6 +152,9 @@ namespace Watcher.Migrations
.IsRequired()
.HasColumnType("longtext");
b.Property<bool>("IsOnline")
.HasColumnType("tinyint(1)");
b.Property<string>("Name")
.IsRequired()
.HasColumnType("longtext");