summaryrefslogtreecommitdiff
path: root/Project-Unite/Models/Notification.cs
blob: dd13e5b5558ccffc7fd7093ad5de981b228383c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; }

    }
}