Добавлен Studio

This commit is contained in:
2026-01-07 23:52:02 +03:00
parent ca5d912c9c
commit c3770c789b
19 changed files with 668 additions and 51 deletions

View File

@@ -8,4 +8,4 @@ public enum DockDirection
Top,
Bottom,
Floating,
}
}

View File

@@ -0,0 +1,8 @@
namespace Lattice.Core.Models.Enums;
public enum NotificationSeverity {
Info,
Success,
Warning,
Error,
}

View File

@@ -0,0 +1,5 @@
using Lattice.Core.Models.Enums;
namespace Lattice.Core.Models;
public record NotificationEventArgs(string Message, NotificationSeverity Severity, int DurationSeconds);