File size: 519 Bytes
ea34bc9 | 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 | using System;
using System.Collections.Generic;
namespace SCMS.Database.Models;
public partial class TblNotification
{
public int Id { get; set; }
public int? UserId { get; set; }
public string Title { get; set; } = null!;
public string? Description { get; set; }
public string? ActionRoute { get; set; }
public DateTime? CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
public bool? DeleteFlag { get; set; }
public virtual TblUser? User { get; set; }
}
|