erp-platform/api/modules/Kurs.Notifications/Kurs.Notifications.Application.Contracts/Notification/NotificationDto.cs

20 lines
570 B
C#
Raw Normal View History

2025-05-06 06:45:49 +00:00
using System;
using Volo.Abp.Application.Dtos;
namespace Kurs.Notifications;
public class NotificationDto : EntityDto<Guid>
{
public string NotificationChannel { get; set; }
public string NotificationType { get; set; }
public 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; }
}