[ENHANCE] - Added IsRead property to Notifications
Fixed Version to Tenant.04.00.01.01 and reverted the Program.cs back to the way it was
This reverts commit 82fef82c4f
.
[ENHANCE] - Added API to get Count of New Notifications based on IsRead
Fixed Typo in Notification Controller
[ENHANCE] - Added API to get Notifications by Count and IsRead
This commit is contained in:
@ -94,6 +94,10 @@ namespace Oqtane.Models
|
||||
/// </summary>
|
||||
public DateTime? SendOn { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// If it has been read. See also <see cref="IsDelivered" />
|
||||
/// </summary>
|
||||
public bool IsRead { get; set; }
|
||||
|
||||
// constructors
|
||||
public Notification() {}
|
||||
@ -174,6 +178,7 @@ namespace Oqtane.Models
|
||||
}
|
||||
IsDelivered = false;
|
||||
DeliveredOn = null;
|
||||
IsRead = false;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user