LibraryManagement / DbConnect /Entities /Notification.cs
Yuyuqt
add: clean out
1e653a4
Raw
History Blame Contribute Delete
562 Bytes
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!;
}