diff options
| author | Michael <[email protected]> | 2017-03-24 15:31:22 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-03-24 15:31:22 -0400 |
| commit | 7c76a963c8e2bc891c38f664c60d9daac31822ee (patch) | |
| tree | c118a8c19a993988a5a11a9c8d97eab3e97bfb52 /Project-Unite/Models | |
| parent | eae28fa3d278c91f2b42b8420db2dd5704d5a049 (diff) | |
| download | project-unite-7c76a963c8e2bc891c38f664c60d9daac31822ee.tar.gz project-unite-7c76a963c8e2bc891c38f664c60d9daac31822ee.tar.bz2 project-unite-7c76a963c8e2bc891c38f664c60d9daac31822ee.zip | |
Notification dropdown in navbar is done.
Diffstat (limited to 'Project-Unite/Models')
| -rw-r--r-- | Project-Unite/Models/Notification.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Project-Unite/Models/Notification.cs b/Project-Unite/Models/Notification.cs index dd13e5b..5870d76 100644 --- a/Project-Unite/Models/Notification.cs +++ b/Project-Unite/Models/Notification.cs @@ -12,6 +12,9 @@ namespace Project_Unite.Models 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; } } }
\ No newline at end of file |
