blob: 5870d76eff59fe1a391e046a25287eba4327657a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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; }
public string AvatarUrl { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string ActionUrl { get; set; }
}
}
|