| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using System;
- using Abp.Application.Services.Dto;
- using Abp.Domain.Entities.Auditing;
- using Abp.Timing;
- namespace Abp.Notifications
- {
- /// <summary>
- /// Represents a published notification for a tenant/user.
- /// </summary>
- [Serializable]
- public class TenantNotification : EntityDto<Guid>, IHasCreationTime
- {
- /// <summary>
- /// Tenant Id.
- /// </summary>
- public int? TenantId { get; set; }
- /// <summary>
- /// Unique notification name.
- /// </summary>
- public string NotificationName { get; set; }
- /// <summary>
- /// Notification data.
- /// </summary>
- public NotificationData Data { get; set; }
- /// <summary>
- /// Gets or sets the type of the entity.
- /// </summary>
- public Type EntityType { get; set; }
- /// <summary>
- /// Name of the entity type (including namespaces).
- /// </summary>
- public string EntityTypeName { get; set; }
- /// <summary>
- /// Entity id.
- /// </summary>
- public object EntityId { get; set; }
- /// <summary>
- /// Severity.
- /// </summary>
- public NotificationSeverity Severity { get; set; }
- public DateTime CreationTime { get; set; }
- /// <summary>
- /// Initializes a new instance of the <see cref="TenantNotification"/> class.
- /// </summary>
- public TenantNotification()
- {
- CreationTime = Clock.Now;
- }
- }
- }
|