namespace Brizco.Domain.MartenEntities.Notifications; public class Notification : MartenEntity { public string Message { get; set; } = string.Empty; public bool IsRead { get; set; } public Guid UserId { get; set; } public DateTime CreatedAt { get; set; } }