UserNotificationState.cs 399 B

123456789101112131415161718
  1. namespace Abp.Notifications
  2. {
  3. /// <summary>
  4. /// Represents state of a <see cref="UserNotification"/>.
  5. /// </summary>
  6. public enum UserNotificationState
  7. {
  8. /// <summary>
  9. /// Notification is not read by user yet.
  10. /// </summary>
  11. Unread = 0,
  12. /// <summary>
  13. /// Notification is read by user.
  14. /// </summary>
  15. Read
  16. }
  17. }