Добавлен Studio
This commit is contained in:
@@ -8,4 +8,4 @@ public enum DockDirection
|
||||
Top,
|
||||
Bottom,
|
||||
Floating,
|
||||
}
|
||||
}
|
||||
|
||||
8
Lattice.Core/Models/Enums/NotificationSeverity.cs
Normal file
8
Lattice.Core/Models/Enums/NotificationSeverity.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Lattice.Core.Models.Enums;
|
||||
|
||||
public enum NotificationSeverity {
|
||||
Info,
|
||||
Success,
|
||||
Warning,
|
||||
Error,
|
||||
}
|
||||
5
Lattice.Core/Models/NotificationEventArgs.cs
Normal file
5
Lattice.Core/Models/NotificationEventArgs.cs
Normal file
@@ -0,0 +1,5 @@
|
||||
using Lattice.Core.Models.Enums;
|
||||
|
||||
namespace Lattice.Core.Models;
|
||||
|
||||
public record NotificationEventArgs(string Message, NotificationSeverity Severity, int DurationSeconds);
|
||||
Reference in New Issue
Block a user