You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
API/src/Model/Notification.cs

25 lines
625 B

namespace Model;
public class Notification
{
public int IdNotif { get; private set; }
public string Message { get; set; }
public DateTime Date { get; set; }
public bool Statut { get; set; }
public string Urgence { get; set; }
public int ToUserId { get; set; }
public Notification(int id,string message, DateTime date, bool statut, string urgence, int toUserId)
{
this.IdNotif = id;
this.Message = message;
this.Date = date;
this.Statut = statut;
this.Urgence = urgence;
this.ToUserId = toUserId;
}
public Notification(){}
}