summaryrefslogtreecommitdiff
path: root/Project-Unite/Models/Notification.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-03-24 12:49:56 -0400
committerMichael <[email protected]>2017-03-24 12:49:56 -0400
commit016128611cf66501e811dca74f43a35d5385679c (patch)
tree7349c14acbbb4e4aa38677fcff03d2ae4345081d /Project-Unite/Models/Notification.cs
parentf7767a660c1ab2f5e98d7bf8ad0a7bc9eb801ddf (diff)
downloadproject-unite-016128611cf66501e811dca74f43a35d5385679c.tar.gz
project-unite-016128611cf66501e811dca74f43a35d5385679c.tar.bz2
project-unite-016128611cf66501e811dca74f43a35d5385679c.zip
Add notification button and db column
Diffstat (limited to 'Project-Unite/Models/Notification.cs')
-rw-r--r--Project-Unite/Models/Notification.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Project-Unite/Models/Notification.cs b/Project-Unite/Models/Notification.cs
new file mode 100644
index 0000000..dd13e5b
--- /dev/null
+++ b/Project-Unite/Models/Notification.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+
+namespace Project_Unite.Models
+{
+ public class Notification
+ {
+ public string Id { get; set; }
+ public string UserId { get; set; }
+ public string Discriminator { get; set; }
+ public DateTime Timestamp { get; set; }
+ public bool IsRead { get; set; }
+
+ }
+} \ No newline at end of file