using System;
using Abp.Application.Services.Dto;
namespace Abp.Notifications
{
///
/// Represents a notification sent to a user.
///
[Serializable]
public class UserNotification : EntityDto, IUserIdentifier
{
///
/// TenantId.
///
public int? TenantId { get; set; }
///
/// User Id.
///
public long UserId { get; set; }
///
/// Current state of the user notification.
///
public UserNotificationState State { get; set; }
///
/// The notification.
///
public TenantNotification Notification { get; set; }
}
}