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

15 lines
366 B
C#
Raw Permalink 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; }
2024-06-25 17:14:08 +03:30
public string Title { get; set; }
2024-03-30 15:10:36 +03:30
public string Date { get; set; }
2024-06-25 21:38:17 +03:30
//public int Status { get; set; }
2024-06-25 17:14:08 +03:30
public string? ForUser { get; set; }
2024-03-30 15:10:36 +03:30
}
}