File size: 617 Bytes
47e77e5
 
 
 
 
 
 
 
 
 
 
 
64a3c1d
47e77e5
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;

namespace TaskTrackingSystem.Shared.Models.Notification;

public class NotificationDto
{
    public long Id { get; set; }
    public string Title { get; set; } = string.Empty;
    public string Body { get; set; } = string.Empty;
    public byte NotificationType { get; set; }
    public string SourceType { get; set; } = string.Empty;
    public long SourceId { get; set; }
    public string TargetUrl { get; set; } = string.Empty;
    public bool IsRead { get; set; }
    public DateTime? CreatedAt { get; set; }
    public DateTime? ReadAt { get; set; }
    public string? SenderName { get; set; }
}