Files
moadiran/Back/Data/Models/Notification.cs

14 lines
365 B
C#
Raw Normal View History

2024-03-30 15:10:36 +03:30
namespace Back.Data.Models
{
public class Notification
{
public int ID { get; set; }
public int Type { get; set; }
public string Message { get; set; }
public string? Path { get; set; }
public string? ViewSize { get; set; }
public string Date { get; set; }
public bool Status { get; set; }
}
}