using System.Text.Json.Serialization; namespace SPMS.Application.DTOs.Notification; public class NotificationReadResponseDto { [JsonPropertyName("unread_count")] public int UnreadCount { get; set; } }