using System.Text.Json.Serialization; namespace SPMS.Application.DTOs.Notification; public class NotificationSummaryRequestDto { [JsonPropertyName("limit")] public int Limit { get; set; } = 5; }