using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace UserManagement.Data.Dto { public class UserNotificationDto { public Guid Id { get; set; } public Guid UserId { get; set; } public string Message { get; set; } public bool IsRead { get; set; } public DateTime CreatedDate { get; set; } public string Url { get; set; } public NotificationsType NotificationsType { get; set; } } }