Spaces:
Sleeping
Sleeping
File size: 562 Bytes
1e653a4 ccc2569 1e653a4 ccc2569 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | using System;
using System.Collections.Generic;
namespace DbConnect.Entities;
public partial class Notification
{
public int Id { get; set; }
public Guid UserId { get; set; }
public string Title { get; set; } = null!;
public string Message { get; set; } = null!;
public string Type { get; set; } = null!;
public string? ActionLink { get; set; }
public string? ActionText { get; set; }
public bool IsRead { get; set; }
public DateTime CreatedAt { get; set; }
public virtual User User { get; set; } = null!;
}
|