﻿using System.Net.Mime;

namespace ChapterX.API.DTOs
{
    public class NotificationDto
    {
        public int Id { get; set; }
        public string Content { get; set; } = string.Empty;
        public string ContentType { get; set; } = string.Empty;
        public bool IsRead { get; set; }
        public string? Link { get; set; }
        public int UserId { get; set; }
        public int? StoryId { get; set; }
        public DateTime CreatedAt { get; set; }
    }
}
