aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/StubsUtils/Notifications.Wpf/NotificationContent.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/StubsUtils/Notifications.Wpf/NotificationContent.cs')
-rw-r--r--Software/Visual_Studio/StubsUtils/Notifications.Wpf/NotificationContent.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/Software/Visual_Studio/StubsUtils/Notifications.Wpf/NotificationContent.cs b/Software/Visual_Studio/StubsUtils/Notifications.Wpf/NotificationContent.cs
new file mode 100644
index 000000000..3b942374b
--- /dev/null
+++ b/Software/Visual_Studio/StubsUtils/Notifications.Wpf/NotificationContent.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Notifications.Wpf
+{
+ public class NotificationContent
+ {
+ public string Title { get; set; }
+ public string Message { get; set; }
+
+ public NotificationType Type { get; set; }
+ }
+
+ public enum NotificationType
+ {
+ Information,
+ Success,
+ Warning,
+ Error
+ }
+}