using System.Text.Json.Serialization; namespace SPMS.Application.DTOs.Notification; public class NotificationSummaryResponseDto { [JsonPropertyName("recent_items")] public List RecentItems { get; set; } = new(); [JsonPropertyName("unread_count")] public int UnreadCount { get; set; } }