Spaces:
Running
Running
User
Fix: Notification, Remove toggle, add kanban board to menu, fix project ID to project name
64a3c1d | 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; } | |
| } | |