| 123456789101112131415161718 |
- namespace Abp.Notifications
- {
- /// <summary>
- /// Represents state of a <see cref="UserNotification"/>.
- /// </summary>
- public enum UserNotificationState
- {
- /// <summary>
- /// Notification is not read by user yet.
- /// </summary>
- Unread = 0,
- /// <summary>
- /// Notification is read by user.
- /// </summary>
- Read
- }
- }
|