From 016128611cf66501e811dca74f43a35d5385679c Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 24 Mar 2017 12:49:56 -0400 Subject: Add notification button and db column --- Project-Unite/Models/Notification.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Project-Unite/Models/Notification.cs (limited to 'Project-Unite/Models/Notification.cs') 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 -- cgit v1.2.3