Api/Brizco.Domain/MartenEntities/Notifications/Notification.cs

9 lines
276 B
C#

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; }
}