2025-05-06 06:45:49 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
|
|
|
2025-11-11 19:49:52 +00:00
|
|
|
|
namespace Erp.Notifications;
|
2025-05-06 06:45:49 +00:00
|
|
|
|
|
|
|
|
|
|
public class NotificationDto : EntityDto<Guid>
|
|
|
|
|
|
{
|
2025-08-18 08:14:23 +00:00
|
|
|
|
public required string NotificationChannel { get; set; }
|
|
|
|
|
|
public required string NotificationType { get; set; }
|
|
|
|
|
|
public required string Message { get; set; }
|
2025-05-06 06:45:49 +00:00
|
|
|
|
public bool IsRead { get; set; }
|
|
|
|
|
|
public bool IsSent { get; set; }
|
|
|
|
|
|
public DateTime? ReadTime { get; set; }
|
|
|
|
|
|
public DateTime CreationTime { get; set; }
|
|
|
|
|
|
public string? CreatorFullname { get; set; }
|
|
|
|
|
|
public Guid? CreatorId { get; set; }
|
|
|
|
|
|
public Guid? TenantId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2025-11-11 19:49:52 +00:00
|
|
|
|
|