using ChapterX.Domain.Shared; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ChapterX.Domain.Entities { public class Notification : IEntity { 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 DateTime CreatedAt { get; set; } public int UserId { get; set; } public int? StoryId { get; set; } public User User { get; set; } = null!; public Story? Story { get; set; } } }