20 lines
597 B
C#
20 lines
597 B
C#
using System;
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace Erp.Notifications;
|
|
|
|
public class NotificationDto : EntityDto<Guid>
|
|
{
|
|
public required string NotificationChannel { get; set; }
|
|
public required string NotificationType { get; set; }
|
|
public required string Message { get; set; }
|
|
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; }
|
|
|
|
}
|
|
|