using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace InstaVibe.Models { public class NotificationModel { public int NotificationId { get; set; } public int SenderUserId { get; set; } public int ReceiverUserId { get; set; } public string Type { get; set; } // Like / Comment public string Message { get; set; } public bool IsRead { get; set; } public DateTime CreatedAt { get; set; } // Extra for UI: public string FromUserName { get; set; } public string ProfilePicture { get; set; } public string TimeAgo { get; set; } } }